|
| | fieldGroup () |
| | Construct null. More...
|
| |
| constexpr | DynamicList () noexcept |
| | Default construct, an empty list without allocation. More...
|
| |
| | DynamicList (const label nElem) |
| | Construct an empty list with given reserve size. More...
|
| |
| | DynamicList (const label nElem, const word &val) |
| | Construct with given size and value for all elements. More...
|
| |
| | DynamicList (const label nElem, const zero) |
| | Construct with given size initializing all elements to zero. More...
|
| |
| | DynamicList (const DynamicList< word, 16 > &lst) |
| | Copy construct. More...
|
| |
| | DynamicList (const DynamicList< word, AnySizeMin > &lst) |
| | Copy construct from DynamicList with different sizing parameters. More...
|
| |
| | DynamicList (const UList< word > &lst) |
| | Construct from UList. Size set to UList size. More...
|
| |
| | DynamicList (const FixedList< word, N > &lst) |
| | Construct from a FixedList. More...
|
| |
| | DynamicList (InputIterator begIter, InputIterator endIter) |
| | Construct given begin/end iterators. More...
|
| |
| | DynamicList (std::initializer_list< word > lst) |
| | Construct from an initializer list. Size set to list size. More...
|
| |
| | DynamicList (const IndirectListBase< word, Addr > &lst) |
| | Construct from IndirectList. Size set to addressing size. More...
|
| |
| | DynamicList (DynamicList< word, 16 > &&lst) |
| | Move construct. More...
|
| |
| | DynamicList (DynamicList< word, AnySizeMin > &&lst) |
| | Move construct with different sizing parameters. More...
|
| |
| | DynamicList (List< word > &&lst) |
| | Move construct from List. More...
|
| |
| | DynamicList (SortableList< word > &&lst) |
| | Move construct from SortableList. More...
|
| |
| | DynamicList (Istream &is) |
| | Construct from Istream. Size set to size of list read. More...
|
| |
| label | capacity () const noexcept |
| | Size of the underlying storage. More...
|
| |
| void | setCapacity (const label nElem) |
| | Alter the size of the underlying storage. More...
|
| |
| void | setSize (const label nElem) |
| | Alter addressable list size. More...
|
| |
| void | setSize (const label nElem, const word &val) |
| | Alter addressable list size and fill new space with constant. More...
|
| |
| void | resize (const label nElem) |
| | Alter addressable list size. More...
|
| |
| void | resize (const label nElem, const word &val) |
| | Alter addressable list size and fill new space with constant. More...
|
| |
| void | reserve (const label nElem) |
| | Reserve allocation space for at least this size. More...
|
| |
| void | clear () |
| | Clear the addressed list, i.e. set the size to zero. More...
|
| |
| void | clearStorage () |
| | Clear the list and delete storage. More...
|
| |
| label | expandStorage () |
| | Expand the addressable size to fit the allocated capacity. More...
|
| |
| DynamicList< word, 16 > & | shrink () |
| | Shrink the allocated space to the number of elements used. More...
|
| |
| void | swap (DynamicList< word, AnySizeMin > &lst) |
| | Swap content with any sized DynamicList. More...
|
| |
| void | transfer (List< word > &lst) |
| | Transfer contents of the argument List into this. More...
|
| |
| void | transfer (DynamicList< word, AnySizeMin > &lst) |
| | Transfer contents of any sized DynamicList into this. More...
|
| |
| void | transfer (SortableList< word > &lst) |
| | Transfer contents of the argument SortableList into this. More...
|
| |
| DynamicList< word, 16 > & | append (const word &val) |
| | Append an element to the end of this list. More...
|
| |
| DynamicList< word, 16 > & | append (word &&val) |
| | Move append an element. More...
|
| |
| DynamicList< word, 16 > & | append (const UList< word > &lst) |
| | Append another list to the end of this list. More...
|
| |
| DynamicList< word, 16 > & | append (const FixedList< word, N > &lst) |
| | Append a FixedList to the end of this list. More...
|
| |
| DynamicList< word, 16 > & | append (std::initializer_list< word > lst) |
| | Append an initializer list at the end of this list. More...
|
| |
| DynamicList< word, 16 > & | append (const IndirectListBase< word, Addr > &lst) |
| | Append a IndirectList at the end of this list. More...
|
| |
| DynamicList< word, 16 > & | append (List< word > &&lst) |
| | Move append list. More...
|
| |
| DynamicList< word, 16 > & | append (DynamicList< word, 16 > &&lst) |
| | Move append list. More...
|
| |
| DynamicList< word, 16 > & | append (DynamicList< word, AnySizeMin > &&lst) |
| | Move append list. More...
|
| |
| DynamicList< word, 16 > & | append (SortableList< word > &&lst) |
| | Move append list. More...
|
| |
| Foam::DynamicList< word, 16 > & | append (const FixedList< word, N > &lst) |
| |
| Foam::DynamicList< word, 16 > & | append (const IndirectListBase< word, Addr > &lst) |
| |
| Foam::DynamicList< word, 16 > & | append (DynamicList< word, AnySizeMin > &&lst) |
| |
| word | remove () |
| | Remove and return the last element. Fatal on an empty list. More...
|
| |
| word | remove (const label idx, const bool fast=false) |
| | Remove and return the specified element. Fatal on an empty list. More...
|
| |
| label | remove (const labelRange &range) |
| | Remove a (start,size) subset from the list. More...
|
| |
| label | remove (std::initializer_list< label > start_size) |
| | Remove a (start,size) subset from the list. More...
|
| |
| label | subset (const labelRange &range) |
| | Retain a (start,size) subset from the list. More...
|
| |
| label | subset (std::initializer_list< label > start_size) |
| | Retain a (start,size) subset from List. More...
|
| |
| word & | operator() (const label i) |
| |
| void | operator= (const word &val) |
| | Assignment of all addressed entries to the given value. More...
|
| |
| void | operator= (const zero) |
| | Assignment of all entries to zero. More...
|
| |
| void | operator= (const UList< word > &lst) |
| | Assignment to UList. More...
|
| |
| void | operator= (const FixedList< word, N > &lst) |
| | Assignment to FixedList. More...
|
| |
| void | operator= (const DynamicList< word, 16 > &lst) |
| | Assignment to DynamicList. More...
|
| |
| void | operator= (const DynamicList< word, AnySizeMin > &lst) |
| | Assignment from DynamicList with different sizing parameters. More...
|
| |
| void | operator= (std::initializer_list< word > lst) |
| | Assignment from initializer list. More...
|
| |
| void | operator= (const IndirectListBase< word, Addr > &lst) |
| | Assignment from IndirectList. More...
|
| |
| void | operator= (List< word > &&lst) |
| | Move assignment. More...
|
| |
| void | operator= (DynamicList< word, 16 > &&lst) |
| | Move assignment. More...
|
| |
| void | operator= (DynamicList< word, AnySizeMin > &&lst) |
| | Move assignment. More...
|
| |
| void | operator= (SortableList< word > &&lst) |
| | Move assignment. More...
|
| |
template<class Type>
class Foam::probes::fieldGroup< Type >
Class used for grouping field types.
Definition at line 121 of file probes.H.