|
| | interfacePair () |
| |
| | interfacePair (const word &alpha1Name, const word &alpha2Name) |
| |
| | interfacePair (const phaseModel &alpha1, const phaseModel &alpha2) |
| |
| | Pair () |
| | Null constructor. More...
|
| |
| | Pair (const word &f, const word &s) |
| | Construct from components. More...
|
| |
| | Pair (const FixedList< word, 2 > &fl) |
| | Construct from FixedList. More...
|
| |
| | Pair (Istream &is) |
| | Construct from Istream. More...
|
| |
| const word & | first () const |
| | Return first. More...
|
| |
| word & | first () |
| | Return first. More...
|
| |
| const word & | second () const |
| | Return second. More...
|
| |
| word & | second () |
| | Return second. More...
|
| |
| const word & | other (const word &a) const |
| | Return other. More...
|
| |
| | FixedList () |
| | Null constructor. More...
|
| |
| | FixedList (const word &) |
| | Construct from value. More...
|
| |
| | FixedList (const word v[Size]) |
| | Construct from C-array. More...
|
| |
| | FixedList (InputIterator first, InputIterator last) |
| | Construct given start and end iterators. More...
|
| |
| | FixedList (std::initializer_list< word >) |
| | Construct from an initializer list. More...
|
| |
| | FixedList (const UList< word > &) |
| | Construct from UList. More...
|
| |
| | FixedList (const SLList< word > &) |
| | Construct from SLList. More...
|
| |
| | FixedList (const FixedList< word, Size > &) |
| | Copy constructor. More...
|
| |
| | FixedList (Istream &) |
| | Construct from Istream. More...
|
| |
| autoPtr< FixedList< word, Size > > | clone () const |
| | Clone. More...
|
| |
| label | fcIndex (const label i) const |
| | Return the forward circular index, i.e. the next index. More...
|
| |
| label | rcIndex (const label i) const |
| | Return the reverse circular index, i.e. the previous index. More...
|
| |
| const word * | cdata () const |
| | Return a const pointer to the first data element,. More...
|
| |
| word * | data () |
| | Return a pointer to the first data element,. More...
|
| |
| word & | first () |
| | Return the first element of the list. More...
|
| |
| const word & | first () const |
| | Return first element of the list. More...
|
| |
| word & | last () |
| | Return the last element of the list. More...
|
| |
| const word & | last () const |
| | Return the last element of the list. More...
|
| |
| void | checkStart (const label start) const |
| | Check start is within valid range (0 ... size-1) More...
|
| |
| void | checkSize (const label size) const |
| | Check size is within valid range (0 ... size) More...
|
| |
| void | checkIndex (const label i) const |
| | Check index i is within valid range (0 ... size-1) More...
|
| |
| void | resize (const label) |
| | Dummy resize function. More...
|
| |
| void | setSize (const label) |
| | Dummy setSize function. More...
|
| |
| void | transfer (const FixedList< word, Size > &) |
| | Copy (not transfer) the argument contents. More...
|
| |
| void | writeEntry (Ostream &) const |
| | Write the FixedList as a dictionary entry. More...
|
| |
| void | writeEntry (const word &keyword, Ostream &) const |
| | Write the FixedList as a dictionary entry with keyword. More...
|
| |
| word & | operator[] (const label) |
| | Return element of FixedList. More...
|
| |
| const word & | operator[] (const label) const |
| | Return element of constant FixedList. More...
|
| |
| void | operator= (const word v[Size]) |
| | Assignment to array operator. Takes linear time. More...
|
| |
| void | operator= (const UList< word > &) |
| | Assignment to UList operator. Takes linear time. More...
|
| |
| void | operator= (const SLList< word > &) |
| | Assignment to SLList operator. Takes linear time. More...
|
| |
| void | operator= (std::initializer_list< word >) |
| | Assignment to an initializer list. Takes linear time. More...
|
| |
| void | operator= (const word &) |
| | Assignment of all entries to the given value. More...
|
| |
| iterator | begin () |
| | Return an iterator to begin traversing the FixedList. More...
|
| |
| const_iterator | begin () const |
| | Return const_iterator to begin traversing the constant FixedList. More...
|
| |
| iterator | end () |
| | Return an iterator to end traversing the FixedList. More...
|
| |
| const_iterator | end () const |
| | Return const_iterator to end traversing the constant FixedList. More...
|
| |
| const_iterator | cbegin () const |
| | Return const_iterator to begin traversing the constant FixedList. More...
|
| |
| const_iterator | cend () const |
| | Return const_iterator to end traversing the constant FixedList. More...
|
| |
| reverse_iterator | rbegin () |
| | Return reverse_iterator to begin reverse traversing the FixedList. More...
|
| |
| const_reverse_iterator | rbegin () const |
| | Return const_reverse_iterator to begin reverse traversing FixedList. More...
|
| |
| reverse_iterator | rend () |
| | Return reverse_iterator to end reverse traversing the FixedList. More...
|
| |
| const_reverse_iterator | rend () const |
| | Return const_reverse_iterator to end reverse traversing 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...
|
| |
| label | size () const |
| | Return the number of elements in the FixedList. More...
|
| |
| label | max_size () const |
| | Return size of the largest possible FixedList. More...
|
| |
| bool | empty () const |
| | Return true if the FixedList is empty (ie, size() is zero) More...
|
| |
| void | swap (FixedList< word, Size > &) |
| | Swap two FixedLists of the same type in constant time. More...
|
| |
| bool | operator== (const FixedList< word, Size > &) const |
| | Equality operation on FixedLists of the same type. More...
|
| |
| bool | operator!= (const FixedList< word, Size > &) const |
| | The opposite of the equality operation. Takes linear time. More...
|
| |
| bool | operator< (const FixedList< word, Size > &) const |
| | Compare two FixedLists lexicographically. Takes linear time. More...
|
| |
| bool | operator> (const FixedList< word, Size > &) const |
| | Compare two FixedLists lexicographically. Takes linear time. More...
|
| |
| bool | operator<= (const FixedList< word, Size > &) const |
| | Return true if !(a > b). Takes linear time. More...
|
| |
| bool | operator>= (const FixedList< word, Size > &) const |
| | Return true if !(a < b). Takes linear time. More...
|
| |
Definition at line 70 of file multiphaseSystem.H.