Go to the source code of this file.
Classes | |
class | List< T > |
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bounds checking, etc. More... | |
class | FixedList< T, Size > |
A 1D vector of objects of type <T> with a fixed size <Size>. More... | |
class | PtrList< T > |
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used for subscript bounds checking, etc. More... | |
class | LList< LListBase, T > |
Template class for non-intrusive linked lists. More... | |
class | DynamicList< T, SizeInc, SizeMult, SizeDiv > |
A 1D vector of objects of type <T> that resizes itself as necessary to accept the new objects. More... | |
class | SortableList< T > |
A list that is sorted upon construction or when explicitly requested with the sort() method. More... | |
class | IndirectList< T > |
A List with indirect addressing. More... | |
class | UIndirectList< T > |
A List with indirect addressing. More... | |
class | BiIndirectList< T > |
Indexes into negList (negative index) or posList (zero or positive index). More... | |
class | List< T > |
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bounds checking, etc. More... | |
Namespaces | |
Foam | |
Namespace for OpenFOAM. | |
Typedefs | |
typedef UList< label > | unallocLabelList |
Functions | |
template<class T > | |
T | clone (const T &t) |
template<class T > | |
Istream & | operator>> (Istream &, List< T > &) |
template<class T > | |
List< T > | readList (Istream &) |
Read a bracket-delimited list, or handle a single value as list of size 1. More... | |