|
| phasePairKey ()=default |
| Default construct. More...
|
|
| phasePairKey (const word &name1, const word &name2, const bool ordered=false) |
| Construct from names and (optional) ordering flag. More...
|
|
virtual | ~phasePairKey ()=default |
| Destructor. More...
|
|
bool | ordered () const noexcept |
| Return the ordered flag. More...
|
|
| phasePairKey ()=default |
| Default construct. More...
|
|
| phasePairKey (const word &name1, const word &name2, const bool ordered=false) |
| Construct from names and (optional) ordering flag. More...
|
|
virtual | ~phasePairKey ()=default |
| Destructor. More...
|
|
bool | ordered () const noexcept |
| Return the ordered flag. More...
|
|
| phasePairKey ()=default |
| Default construct. More...
|
|
| phasePairKey (const word &name1, const word &name2, const bool ordered=false) |
| Construct from names and (optional) ordering flag. More...
|
|
virtual | ~phasePairKey ()=default |
| Destructor. More...
|
|
bool | ordered () const noexcept |
| Return the ordered flag. More...
|
|
| Pair ()=default |
| Default construct. More...
|
|
| Pair (const word &f, const word &s) |
| Copy construct from components. More...
|
|
| Pair (word &&f, word &&s) |
| Move construct from components. More...
|
|
| Pair (const std::pair< word, word > &vals) |
| Copy construct from std::pair. More...
|
|
| Pair (std::pair< word, word > &&vals) |
| Move construct from std::pair. More...
|
|
| Pair (const FixedList< word, 2 > &list) |
| Copy construct FixedList of two items. More...
|
|
| Pair (const word &f, const word &s, const bool doSort) |
| Copy construct, optionally sorted with first less-than second. More...
|
|
| Pair (const FixedList< word, 2 > &list, const bool doSort) |
| Copy construct, optionally sorted with first less-than second. More...
|
|
| Pair (Istream &is) |
| Construct from Istream. More...
|
|
const word & | second () const noexcept |
| Return second element, which is also the last element. More...
|
|
word & | second () noexcept |
| Return second element, which is also the last element. More...
|
|
const word & | other (const word &a) const |
| Return other element. More...
|
|
bool | sorted () const |
| True if first() is less-than second() More...
|
|
void | flip () |
| Flip the Pair in-place. More...
|
|
void | sort () |
| Sort so that first() is less-than second() More...
|
|
| FixedList ()=default |
| Default construct. More...
|
|
| FixedList (const T &val) |
| Construct and initialize all entries to given value. More...
|
|
| FixedList (const Foam::zero) |
| Construct and initialize all entries to zero. More...
|
|
| FixedList (const T list[N]) |
| Copy construct from C-array (deprecated) More...
|
|
| FixedList (const FixedList< T, N > &list) |
| Copy construct. More...
|
|
| FixedList (FixedList< T, N > &&list) |
|
| FixedList (std::initializer_list< T > list) |
| Construct from an initializer list. Runtime size check. More...
|
|
| FixedList (const UList< T > &list) |
| Construct from UList. Runtime size check. More...
|
|
template<unsigned AnyNum> |
| FixedList (const FixedList< T, AnyNum > &list, const FixedList< label, N > &indices) |
| Copy construct from a subset of the input. No size check. More...
|
|
| FixedList (const UList< T > &list, const FixedList< label, N > &indices) |
| Copy construct from a subset of the input. No size check. More...
|
|
| FixedList (const SLList< T > &list) |
| Construct from SLList. Runtime size check. More...
|
|
| FixedList (Istream &is) |
| Construct from Istream. More...
|
|
autoPtr< FixedList< T, N > > | clone () const |
| Clone. More...
|
|
const T * | cdata () const noexcept |
| Return pointer to the underlying array serving as data storage. More...
|
|
T * | data () noexcept |
| Return pointer to the underlying array serving as data storage. More...
|
|
const char * | cdata_bytes () const noexcept |
| Return pointer to the underlying array serving as data storage,. More...
|
|
char * | data_bytes () noexcept |
| Return pointer to the underlying array serving as data storage,. More...
|
|
T & | first () noexcept |
| The first element of the list, position [0]. More...
|
|
const T & | first () const noexcept |
| The first element of the list, position [0]. More...
|
|
T & | last () noexcept |
| The last element of the list, position [N-1]. More...
|
|
const T & | last () const noexcept |
| The last element of the list, position [N-1]. More...
|
|
label | fcIndex (const label i) const |
|
const T & | fcValue (const label i) const |
| Return forward circular value (ie, next value in the list) More...
|
|
T & | fcValue (const label i) |
| Return forward circular value (ie, next value in the list) More...
|
|
label | rcIndex (const label i) const |
|
const T & | rcValue (const label i) const |
| Return reverse circular value (ie, previous value in the list) More...
|
|
T & | rcValue (const label i) |
| Return reverse circular value (ie, previous value in the list) More...
|
|
void | checkStart (const label start) const |
| Check start is within valid range [0,size) More...
|
|
void | checkSize (const label size) const |
| Check size is identical to template parameter N. More...
|
|
void | checkIndex (const label i) const |
| Check index is within valid range [0,N) More...
|
|
bool | uniform () const |
| True if all entries have identical values, and list is non-empty. More...
|
|
label | find (const T &val, label pos=0) const |
| Find index of the first occurrence of the value. More...
|
|
label | rfind (const T &val, label pos=-1) const |
| Find index of the last occurrence of the value. More...
|
|
bool | found (const T &val, label pos=0) const |
| True if the value if found in the list. More...
|
|
void | resize (const label n) |
| Dummy function, to make FixedList consistent with List. More...
|
|
void | resize_nocopy (const label n) |
| Dummy function, to make FixedList consistent with List. More...
|
|
void | setSize (const label n) |
| Dummy function, to make FixedList consistent with List. More...
|
|
void | fill (const T &val) |
| Assign all entries to the given value. More...
|
|
void | fill (const Foam::zero) |
| Assign all entries to zero. More...
|
|
void | moveFirst (const label i) |
| Move element to the first position. More...
|
|
void | moveLast (const label i) |
| Move element to the last position. More...
|
|
void | swapFirst (const label i) |
| Swap element with the first element. More...
|
|
void | swapLast (const label i) |
| Swap element with the last element. More...
|
|
void | transfer (FixedList< T, N > &list) |
|
T & | operator[] (const label i) |
| Return element of FixedList. More...
|
|
const T & | operator[] (const label i) const |
| Return element of constant FixedList. More...
|
|
void | operator= (const T list[N]) |
| Assignment to array operator. Takes linear time. More...
|
|
void | operator= (const UList< T > &list) |
| Assignment to UList operator. Takes linear time. More...
|
|
void | operator= (const SLList< T > &list) |
| Assignment to SLList operator. Takes linear time. More...
|
|
void | operator= (std::initializer_list< T > list) |
| Assignment to an initializer list. Takes linear time. More...
|
|
void | operator= (const T &val) |
| Assign all entries to the given value. fill() More...
|
|
void | operator= (const Foam::zero) |
| Assign all entries to zero. fill() More...
|
|
void | operator= (const FixedList< T, N > &list) |
| Copy assignment. More...
|
|
void | operator= (FixedList< T, N > &&list) |
| Move assignment. More...
|
|
iterator | begin () noexcept |
| Return an iterator to begin traversing the FixedList. More...
|
|
iterator | end () noexcept |
| Return an iterator to end traversing the FixedList. More...
|
|
const_iterator | cbegin () const noexcept |
| Return const_iterator to begin traversing the constant FixedList. More...
|
|
const_iterator | cend () const noexcept |
| Return const_iterator to end traversing the constant FixedList. More...
|
|
const_iterator | begin () const noexcept |
| Return const_iterator to begin traversing the constant FixedList. More...
|
|
const_iterator | end () const noexcept |
| Return const_iterator to end traversing the constant FixedList. More...
|
|
reverse_iterator | rbegin () |
| Return reverse_iterator to begin reverse traversing the FixedList. More...
|
|
reverse_iterator | rend () |
| Return reverse_iterator to end reverse traversing the FixedList. More...
|
|
const_reverse_iterator | crbegin () const |
| Return const_reverse_iterator to begin reverse traversing FixedList. More...
|
|
const_reverse_iterator | crend () const |
| Return const_reverse_iterator to end reverse traversing FixedList. More...
|
|
const_reverse_iterator | rbegin () const |
| Return const_reverse_iterator to begin reverse traversing FixedList. More...
|
|
const_reverse_iterator | rend () const |
| Return const_reverse_iterator to end reverse traversing FixedList. More...
|
|
void | swap (FixedList< T, N > &other) |
| Swap lists by swapping the content of the individual list elements. More...
|
|
bool | operator== (const FixedList< T, N > &list) const |
| Equality operation on FixedLists of the same type. More...
|
|
bool | operator!= (const FixedList< T, N > &list) const |
| The opposite of the equality operation. Takes linear time. More...
|
|
bool | operator< (const FixedList< T, N > &list) const |
| Compare two FixedLists lexicographically. Takes linear time. More...
|
|
bool | operator> (const FixedList< T, N > &list) const |
| Compare two FixedLists lexicographically. Takes linear time. More...
|
|
bool | operator<= (const FixedList< T, N > &list) const |
| Return true if !(a > b). Takes linear time. More...
|
|
bool | operator>= (const FixedList< T, N > &list) const |
| Return true if !(a < b). Takes linear time. More...
|
|
Istream & | readList (Istream &is) |
| Read from Istream, discarding contents of existing List. More...
|
|
void | writeEntry (const word &keyword, Ostream &os) const |
| Write the list as a dictionary entry with keyword. More...
|
|
Ostream & | writeList (Ostream &os, const label shortLen=0) const |
| Write List, with line-breaks in ASCII when length exceeds shortLen. More...
|
|
An ordered or unorder pair of phase names. Typically specified as follows.
(phase1 and phase2) // unordered
(phase1 to phase2) // ordered
- Source files
-
(phase1 and phase2) // unordered
(phase1 in phase2) // ordered
- Source files
-
(phase1 and phase2) // unordered
(phase1 in phase2) // ordered
- Source files
-
Definition at line 65 of file phasePairKey.H.