Template class for intrusive linked lists. More...
Classes | |
| class | const_iterator |
| A const_iterator. More... | |
| class | const_reverse_iterator |
| class | iterator |
| A non-const iterator. More... | |
| class | reverse_iterator |
Public Types | |
| typedef T | value_type |
| Type of values stored. More... | |
| typedef T * | pointer |
| Pointer for value_type. More... | |
| typedef T & | reference |
| 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 Member Functions | |
| UILList ()=default | |
| Null construct. More... | |
| UILList (T *item) | |
| Construct and insert the initial T item. More... | |
| UILList (const UILList< LListBase, T > &lst) | |
| Construct as copy. More... | |
| T * | first () |
| The first entry in the list. More... | |
| const T * | first () const |
| The first entry in the list (const access) More... | |
| T * | last () |
| The last entry in the list. More... | |
| const T * | last () const |
| The last entry in the list (const access) More... | |
| T * | removeHead () |
| Remove and return head. More... | |
| T * | remove (T *item) |
| Remove and return element. More... | |
| T * | remove (iterator &iter) |
| Remove and return item specified by iterator. More... | |
| void | operator= (const UILList< LListBase, T > &lst) |
| Copy assignment. More... | |
| bool | operator== (const UILList< LListBase, T > &lst) const |
| Equality. True both lists are element-wise equal. More... | |
| bool | operator!= (const UILList< LListBase, T > &lst) const |
| The opposite of the equality operation. Takes linear time. More... | |
| Ostream & | writeList (Ostream &os, const label shortLen=0) const |
| Write UILList 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 iterator & | end () |
| End of list for forward iterators. More... | |
| const const_iterator & | cend () const |
| End of list for forward iterators. More... | |
| const reverse_iterator & | rend () |
| End of list for reverse iterators. More... | |
| const const_reverse_iterator & | crend () const |
| End of list for reverse iterators. More... | |
| const const_iterator & | end () const |
| End of list for forward iterators. More... | |
| const const_reverse_iterator & | rend () const |
| End of list for reverse iterators. More... | |
Public Attributes | |
| const typedef T * | const_pointer |
| Const pointer for value_type. More... | |
| const typedef T & | const_reference |
| Const reference for value_type. More... | |
Friends | |
| Ostream & | operator (Ostream &os, const UILList< LListBase, T > &lst) |
Template class for intrusive linked lists.
| typedef T value_type |
| typedef label size_type |
| typedef label difference_type |
| using base_iterator = typename LListBase::iterator |
| using const_base_iterator = typename LListBase::const_iterator |
|
default |
Null construct.
Construct as copy.
Definition at line 34 of file UILList.C.
References append(), UILList< LListBase, T >::cbegin(), and UILList< LListBase, T >::cend().
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Copy assignment.
Definition at line 46 of file UILList.C.
References append(), UILList< LListBase, T >::cbegin(), UILList< LListBase, T >::cend(), and clear().
Equality. True both lists are element-wise equal.
(using value_type::operator==). Takes linear time.
Definition at line 59 of file UILList.C.
References stdFoam::cbegin(), UILList< LListBase, T >::cbegin(), and stdFoam::cend().
The opposite of the equality operation. Takes linear time.
Definition at line 84 of file UILList.C.
References Foam::operator==().
| Foam::Ostream & writeList | ( | Ostream & | os, |
| const label | shortLen = 0 |
||
| ) | const |
Write UILList with line-breaks when length exceeds shortLen.
Using '0' suppresses line-breaks entirely.
Definition at line 37 of file UILListIO.C.
References IOstream::check(), FUNCTION_NAME, Foam::nl, and T.
|
inline |
|
inline |
Iterator to first item in list with const access.
Definition at line 384 of file UILList.H.
Referenced by UILList< LListBase, T >::operator=(), UILList< LListBase, T >::operator==(), and UILList< LListBase, T >::UILList().
|
inline |
|
inline |
Iterator to last item in list with const access.
Definition at line 396 of file UILList.H.
Referenced by UILList< LListBase, T >::rbegin().
|
inline |
Iterator to first item in list with const access.
Definition at line 402 of file UILList.H.
References stdFoam::cbegin().
|
inline |
Iterator to last item in list with const access.
Definition at line 408 of file UILList.H.
References UILList< LListBase, T >::crbegin().
|
inline |
|
inline |
End of list for forward iterators.
Definition at line 421 of file UILList.H.
Referenced by UILList< LListBase, T >::end(), UILList< LListBase, T >::operator=(), and UILList< LListBase, T >::UILList().
|
inline |
|
inline |
End of list for reverse iterators.
Definition at line 433 of file UILList.H.
Referenced by UILList< LListBase, T >::rend().
|
inline |
End of list for forward iterators.
Definition at line 439 of file UILList.H.
References UILList< LListBase, T >::cend().
|
inline |
End of list for reverse iterators.
Definition at line 445 of file UILList.H.
References UILList< LListBase, T >::crend().
Write UILList to Ostream with line breaks, as per writeList() with shortLen=-1
| const typedef T* const_pointer |
| const typedef T& const_reference |