probes::fieldGroup< Type > Class Template Reference

Class used for grouping field types. More...

Inheritance diagram for probes::fieldGroup< Type >:
[legend]
Collaboration diagram for probes::fieldGroup< Type >:
[legend]

Public Member Functions

 fieldGroup ()
 Construct null. More...
 
- Public Member Functions inherited from DynamicList< word >
constexpr DynamicList () noexcept
 Default construct, an empty list without allocation. More...
 
 DynamicList (const label len)
 Construct an empty list with given reserve size. More...
 
 DynamicList (const label len, const word &val)
 Construct with given size and value for all elements. More...
 
 DynamicList (const label len, const Foam::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 (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...
 
std::streamsize capacity_bytes () const noexcept
 Number of contiguous bytes of the underlying storage. More...
 
void setCapacity (const label len)
 Alter the size of the underlying storage. More...
 
void setCapacity_nocopy (const label len)
 
void setCapacity_unsafe (const label len) noexcept
 
void reserve (const label len)
 
void reserve_nocopy (const label len)
 
void resize (const label len)
 
void resize (const label len, const word &val)
 Alter addressable size and fill new entries with constant value. More...
 
void resize_nocopy (const label len)
 
void setSize (const label n)
 Same as resize() More...
 
void setSize (const label n, const word &val)
 Same as resize() More...
 
void clear () noexcept
 Clear the addressed list, i.e. set the size to zero. More...
 
void clearStorage ()
 Clear the list and delete storage. More...
 
label expandStorage () noexcept
 Expand the addressable size to fit the allocated capacity. More...
 
void shrinkStorage ()
 Shrink the allocated space to the number of elements used. More...
 
DynamicList< word, 16 > & shrink ()
 Shrink the allocated space to the number of elements used. More...
 
void swap (DynamicList< word, AnySizeMin > &other)
 Swap content, independent of sizing parameter. More...
 
void transfer (List< word > &list)
 Transfer contents of the argument List into this. More...
 
void transfer (DynamicList< word, AnySizeMin > &list)
 Transfer contents of any sized DynamicList into this. More...
 
void transfer (SortableList< word > &list)
 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)
 
label appendUniq (const word &val)
 Append an element if not already in the list. More...
 
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...
 
wordoperator() (const label i)
 Return non-const access to an element, resizing list if needed. More...
 
void operator= (const word &val)
 Assignment of all addressed entries to the given value. More...
 
void operator= (const Foam::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...
 
IstreamreadList (Istream &is)
 Read from Istream, discarding existing contents. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from DynamicList< word >
static constexpr label min_size () noexcept
 Normal lower capacity limit - the SizeMin template parameter. More...
 

Detailed Description

template<class Type>
class Foam::probes::fieldGroup< Type >

Class used for grouping field types.

Definition at line 121 of file probes.H.

Constructor & Destructor Documentation

◆ fieldGroup()

fieldGroup ( )
inline

Construct null.

Definition at line 127 of file probes.H.


The documentation for this class was generated from the following file: