List of templated reactions. More...
#include <ReactionList.H>


Public Member Functions | |
| ReactionList (const speciesTable &species, const ReactionTable< ThermoType > &thermoDatabase) | |
| Construct empty list. | |
| ReactionList (const speciesTable &species, const ReactionTable< ThermoType > &thermoDatabase, const dictionary &dict) | |
| Construct from dictionary. | |
| ReactionList (const ReactionList< ThermoType > &reactions) | |
| Construct copy. | |
| ~ReactionList ()=default | |
| Destructor. | |
| bool | readReactionDict () |
| Read reactions from dictionary. | |
| void | write (Ostream &os) const |
| Write. | |
| Public Member Functions inherited from LPtrList< SLListBase, T > | |
| LPtrList ()=default | |
| Default construct. | |
| LPtrList (T *item) | |
| Construct and add initial item pointer. | |
| LPtrList (const LPtrList &lst) | |
| Copy construct by using 'clone()' for each element. | |
| LPtrList (LPtrList &&lst) | |
| Move construct. | |
| LPtrList (Istream &is, const INew &inew) | |
| Construct from Istream using given Istream constructor class. | |
| LPtrList (Istream &is) | |
| Construct from Istream using default Istream constructor class. | |
| ~LPtrList () | |
| Destructor. Calls clear(). | |
| T & | front () |
| The first entry in the list. | |
| const T & | front () const |
| The first entry in the list (const access). | |
| T & | back () |
| The last entry in the list. | |
| const T & | back () const |
| The last entry in the list (const access). | |
| T & | emplace_front (Args &&... args) |
| Emplace construct new element at front of list. Return reference. | |
| T & | emplace_back (Args &&... args) |
| Emplace construct new element at back of list. Return reference. | |
| void | pop_front (label n=1) |
| Remove first element(s) from the list (deletes pointers). | |
| void | clear () |
| Clear the contents of the list. | |
| void | transfer (LPtrList< SLListBase, T > &lst) |
| Transfer the contents of the argument into this List and annul the argument list. | |
| void | operator= (const LPtrList< SLListBase, T > &lst) |
| Copy assign by using 'clone()' for each element. | |
| void | operator= (LPtrList< SLListBase, T > &&lst) |
| Move assign. | |
| iterator | begin () |
| Iterator to first item in list with non-const access. | |
| const_iterator | cbegin () const |
| Iterator to first item in list with const access. | |
| reverse_iterator | rbegin () |
| Iterator to last item in list with non-const access. | |
| const_reverse_iterator | crbegin () const |
| Iterator to last item in list with const access. | |
| const_iterator | begin () const |
| Iterator to first item in list with const access. | |
| const_reverse_iterator | rbegin () const |
| Iterator to last item in list with const access. | |
| const iterator & | end () |
| End of list for forward iterators. | |
| const const_iterator & | cend () const |
| End of list for forward iterators. | |
| const reverse_iterator & | rend () |
| End of list for reverse iterators. | |
| const const_reverse_iterator & | crend () const |
| End of list for reverse iterators. | |
| const const_iterator & | end () const |
| End of list for forward iterators. | |
| const const_reverse_iterator & | rend () const |
| End of list for reverse iterators. | |
| T & | first () |
| The first entry in the list. | |
| const T & | first () const |
| The first entry in the list (const access). | |
| T & | last () |
| The last entry in the list. | |
| const T & | last () const |
| The last entry in the list (const access). | |
| Public Member Functions inherited from LList< LListBase, T > | |
| LList ()=default | |
| Default construct. | |
| LList (const T &elem) | |
| Construct and copy add initial item. | |
| LList (T &&elem) | |
| Construct and move add initial item. | |
| LList (Istream &is) | |
| Construct from Istream. | |
| LList (const LList< LListBase, T > &lst) | |
| Copy construct. | |
| LList (LList< LListBase, T > &&lst) | |
| Move construct. | |
| LList (std::initializer_list< T > lst) | |
| Copy construct from an initializer list. | |
| ~LList () | |
| Destructor. Calls clear(). | |
| reference | front () |
| The first entry in the list. | |
| const_reference | front () const |
| The first entry in the list (const access). | |
| reference | back () |
| The last entry in the list. | |
| const_reference | back () const |
| The last entry in the list (const access). | |
| void | push_front (const T &elem) |
| Add copy at front of list. | |
| void | push_front (T &&elem) |
| Move construct at front of list. | |
| void | push_back (const T &elem) |
| Add copy at back of list. | |
| void | push_back (T &&elem) |
| Move construct at back of list. | |
| void | clear () |
| Delete contents of list. | |
| void | pop_front (label n=1) |
| Remove first element(s) from the list (deletes pointers). | |
| T | removeHead () |
| Remove and return first entry. | |
| T | remove (link *item) |
| Remove and return element. | |
| T | remove (iterator &iter) |
| Remove and return element specified by iterator. | |
| void | transfer (LList< LListBase, T > &lst) |
| Transfer the contents of the argument into this List and annul the argument list. | |
| void | operator= (const LList< LListBase, T > &lst) |
| Copy assignment. | |
| void | operator= (LList< LListBase, T > &&lst) |
| Move assignment. | |
| void | operator= (std::initializer_list< T > lst) |
| Copy assignment from an initializer list. | |
| Istream & | readList (Istream &is) |
| Read list from Istream. | |
| Ostream & | writeList (Ostream &os, const label shortLen=0) const |
| Write LList with line-breaks when length exceeds shortLen. | |
| iterator | begin () |
| Iterator to first item in list with non-const access. | |
| const_iterator | cbegin () const |
| Iterator to first item in list with const access. | |
| reverse_iterator | rbegin () |
| Iterator to last item in list with non-const access. | |
| const_reverse_iterator | crbegin () const |
| Iterator to last item in list with const access. | |
| const_iterator | begin () const |
| Iterator to first item in list with const access. | |
| const_reverse_iterator | rbegin () const |
| Iterator to last item in list with const access. | |
| const iterator & | end () |
| End of list for forward iterators. | |
| const const_iterator & | cend () const |
| End of list for forward iterators. | |
| const reverse_iterator & | rend () |
| End of list for reverse iterators. | |
| const const_reverse_iterator & | crend () const |
| End of list for reverse iterators. | |
| const const_iterator & | end () const |
| End of list for forward iterators. | |
| const const_reverse_iterator & | rend () const |
| End of list for reverse iterators. | |
| reference | first () |
| The first entry in the list. | |
| const_reference | first () const |
| The first entry in the list (const access). | |
| reference | last () |
| The last entry in the list. | |
| const_reference | last () const |
| The last entry in the list (const access). | |
| void | prepend (const T &elem) |
| Add copy at front of list. | |
| void | prepend (T &&elem) |
| Move construct at front of list. | |
| void | append (const T &elem) |
| Add copy at back of list. | |
| void | append (T &&elem) |
| Move construct at back of list. | |
| void | insert (const T &elem) |
| Add copy at front of list. Same as push_front(). | |
| void | insert (T &&elem) |
| Move construct at front of list. Same as push_front(). | |
Additional Inherited Members | |
| Public Types inherited from LPtrList< SLListBase, T > | |
| typedef T * | pointer |
| Pointer for LPtrList::value_type objects. | |
| typedef const T * | const_pointer |
| Const pointer for LPtrList::value_type objects. | |
| typedef T & | reference |
| Reference for LPtrList::value_type objects. | |
| typedef const T & | const_reference |
| Const reference for LPtrList::value_type objects. | |
| using | base_iterator |
| using | const_base_iterator |
| typedef LList< SLListBase, T * > | parent_type |
| The parent list storage. | |
| Public Types inherited from LList< LListBase, T > | |
| typedef T | value_type |
| Type of values stored. | |
| typedef T * | pointer |
| Pointer for value_type. | |
| typedef const T * | const_pointer |
| Const pointer for value_type. | |
| typedef T & | reference |
| Reference for value_type. | |
| typedef const T & | const_reference |
| Const reference for value_type. | |
| typedef label | size_type |
| The type that can represent the container size. | |
| typedef label | difference_type |
| The difference between iterators. | |
| using | base_iterator = typename LListBase::iterator |
| using | const_base_iterator = typename LListBase::const_iterator |
List of templated reactions.
Definition at line 52 of file ReactionList.H.
| ReactionList | ( | const speciesTable & | species, |
| const ReactionTable< ThermoType > & | thermoDatabase ) |
Construct empty list.
Definition at line 27 of file ReactionList.C.
Referenced by ReactionList().

| ReactionList | ( | const speciesTable & | species, |
| const ReactionTable< ThermoType > & | thermoDatabase, | ||
| const dictionary & | dict ) |
Construct from dictionary.
Definition at line 41 of file ReactionList.C.
References dict, and readReactionDict().

| ReactionList | ( | const ReactionList< ThermoType > & | reactions | ) |
|
default |
| bool readReactionDict | ( | ) |
Read reactions from dictionary.
Definition at line 70 of file ReactionList.C.
References append(), and Reaction< ReactionThermo >::New().
Referenced by ReactionList().


| void write | ( | Ostream & | os | ) | const |
Write.
Definition at line 90 of file ReactionList.C.
References Reaction< ReactionThermo >::name(), os(), and Reaction< ReactionThermo >::write().
