FIFOStack< T > Class Template Reference

A FIFO stack based on a singly-linked list. More...

Inheritance diagram for FIFOStack< T >:
[legend]
Collaboration diagram for FIFOStack< T >:
[legend]

Public Member Functions

T top () const
 Return a copy of the top element. More...
 
T bottom () const
 Return a copy of the bottom element. More...
 
void push (const T &element)
 Push an element onto the back of the stack. More...
 
void push (T &&element)
 Move an element onto the back of the stack. More...
 
T pop ()
 Pop the bottom element off the stack. More...
 
- Public Member Functions inherited from LList< LListBase, T >
 LList ()=default
 Default construct. More...
 
 LList (const T &item)
 Construct and copy insert the initial T item. More...
 
 LList (T &&item)
 Construct and move insert the initial T item. More...
 
 LList (Istream &is)
 Construct from Istream. More...
 
 LList (const LList< LListBase, T > &lst)
 Copy construct. More...
 
 LList (LList< LListBase, T > &&lst)
 Move construct. More...
 
 LList (std::initializer_list< T > lst)
 Copy construct from an initializer list. More...
 
 ~LList ()
 Destructor. More...
 
reference first ()
 The first entry in the list. More...
 
const_reference first () const
 The first entry in the list (const access) More...
 
reference last ()
 The last entry in the list. More...
 
const_reference last () const
 The last entry in the list (const access) More...
 
void insert (const T &item)
 Add copy at head of list. More...
 
void insert (T &&item)
 Move construct at head of list. More...
 
void append (const T &item)
 Add copy at tail of list. More...
 
void append (T &&item)
 Move construct at tail of list. More...
 
T removeHead ()
 Remove and return head. More...
 
T remove (link *item)
 Remove and return element. More...
 
T remove (iterator &iter)
 Remove and return element specified by iterator. More...
 
void clear ()
 Delete contents of list. More...
 
void transfer (LList< LListBase, T > &lst)
 Transfer the contents of the argument into this List. More...
 
void operator= (const LList< LListBase, T > &lst)
 Copy assignment. More...
 
void operator= (LList< LListBase, T > &&lst)
 Move assignment. More...
 
void operator= (std::initializer_list< T > lst)
 Copy assignment from an initializer list. More...
 
IstreamreadList (Istream &is)
 Read list from Istream. More...
 
OstreamwriteList (Ostream &os, const label shortLen=0) const
 Write LList with line-breaks when length exceeds shortLen. More...
 
iterator begin ()
 Iterator to first item in list with non-const access. More...
 
const_iterator cbegin () const
 Iterator to first item in list with const access. More...
 
reverse_iterator rbegin ()
 Iterator to last item in list with non-const access. More...
 
const_reverse_iterator crbegin () const
 Iterator to last item in list with const access. More...
 
const_iterator begin () const
 Iterator to first item in list with const access. More...
 
const_reverse_iterator rbegin () const
 Iterator to last item in list with const access. More...
 
const iteratorend ()
 End of list for forward iterators. More...
 
const const_iteratorcend () const
 End of list for forward iterators. More...
 
const reverse_iteratorrend ()
 End of list for reverse iterators. More...
 
const const_reverse_iteratorcrend () const
 End of list for reverse iterators. More...
 
const const_iteratorend () const
 End of list for forward iterators. More...
 
const const_reverse_iteratorrend () const
 End of list for reverse iterators. More...
 

Additional Inherited Members

- Public Types inherited from LList< LListBase, T >
typedef T value_type
 Type of values stored. More...
 
typedef Tpointer
 Pointer for value_type. More...
 
typedef Treference
 Reference for value_type. More...
 
typedef label size_type
 The type that can represent the container size. More...
 
typedef label difference_type
 The difference between iterator objects. More...
 
using base_iterator = typename LListBase::iterator
 
using const_base_iterator = typename LListBase::const_iterator
 
- Public Attributes inherited from LList< LListBase, T >
const typedef Tconst_pointer
 Const pointer for value_type. More...
 
const typedef Tconst_reference
 Const reference for value_type. More...
 

Detailed Description

template<class T>
class Foam::FIFOStack< T >

A FIFO stack based on a singly-linked list.

Stack operations are push(), pop(), top(), bottom().

Definition at line 51 of file FIFOStack.H.

Member Function Documentation

◆ top()

T top ( ) const
inline

Return a copy of the top element.

Definition at line 66 of file FIFOStack.H.

◆ bottom()

T bottom ( ) const
inline

Return a copy of the bottom element.

Definition at line 72 of file FIFOStack.H.

◆ push() [1/2]

void push ( const T element)
inline

Push an element onto the back of the stack.

Definition at line 78 of file FIFOStack.H.

Referenced by averageCondition::calc(), PFA< CompType, ThermoType >::reduceMechanism(), DRG< CompType, ThermoType >::reduceMechanism(), DAC< CompType, ThermoType >::reduceMechanism(), and DRGEP< CompType, ThermoType >::reduceMechanism().

Here is the caller graph for this function:

◆ push() [2/2]

void push ( T &&  element)
inline

Move an element onto the back of the stack.

Definition at line 84 of file FIFOStack.H.

◆ pop()

T pop ( )
inline

Pop the bottom element off the stack.

Definition at line 90 of file FIFOStack.H.

Referenced by averageCondition::calc(), PFA< CompType, ThermoType >::reduceMechanism(), DRG< CompType, ThermoType >::reduceMechanism(), DAC< CompType, ThermoType >::reduceMechanism(), and DRGEP< CompType, ThermoType >::reduceMechanism().

Here is the caller graph for this function:

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