libMesh
Classes | Namespaces | Functions
int_range.h File Reference

Go to the source code of this file.

Classes

class  libMesh::DenseSubVector< T >
 Defines a dense subvector for use in finite element computations. More...
 
class  libMesh::DenseVector< T >
 Defines a dense vector for use in Finite Element-type computations. More...
 
class  libMesh::NumericVector< T >
 Provides a uniform interface to vector storage schemes for different linear algebra libraries. More...
 
class  libMesh::IntRange< T >
 The IntRange templated class is intended to make it easy to loop over integers which are indices of a container. More...
 
class  libMesh::IntRange< T >::iterator
 

Namespaces

 libMesh
 The libMesh namespace provides an interface to certain functionality in the library.
 

Functions

template<typename T >
auto libMesh::index_range (const T &sizable)
 Helper function that returns an IntRange<std::size_t> representing all the indices of the passed-in vector-like object (i.e. More...
 
template<typename T >
IntRange< numeric_index_type > libMesh::index_range (const NumericVector< T > &vec)
 Same thing but for NumericVector. More...
 
template<typename T >
IntRange< T > libMesh::make_range (T beg, T end)
 The 2-parameter make_range() helper function returns an IntRange<T> when both input parameters are of type T. More...
 
template<typename T >
IntRange< T > libMesh::make_range (T end)
 The 1-parameter version of make_range() saves even more typing in the common case of a 0 starting point. More...