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 const T * | const_pointer |
Const pointer for value_type. More... | |
typedef T & | reference |
Reference for value_type. More... | |
typedef const T & | const_reference |
Const 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 | |
Default construct. More... | |
UILList (T *item) | |
Construct and add initial item pointer. 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... | |
Friends | |
Ostream & | operator (Ostream &os, const UILList< LListBase, T > &lst) |
Template class for intrusive linked lists.
typedef T value_type |
typedef const T* const_pointer |
typedef const T& const_reference |
typedef label size_type |
typedef label difference_type |
using base_iterator = typename LListBase::iterator |
using const_base_iterator = typename LListBase::const_iterator |
|
default |
Default construct.
Construct as copy.
Definition at line 34 of file UILList.C.
References append(), UILList< LListBase, T >::cbegin(), and UILList< LListBase, T >::cend().
|
inline |
The first entry in the list.
Definition at line 124 of file UILList.H.
References ODESolver::stepState::first, and T.
Referenced by bladeModel::bladeModel(), meshRefinement::lookup(), and thermophysicalPropertiesSelector< ThermophysicalProperties >::thermophysicalPropertiesSelector().
|
inline |
The first entry in the list (const access)
Definition at line 130 of file UILList.H.
References ODESolver::stepState::first, and T.
|
inline |
The last entry in the list.
Definition at line 136 of file UILList.H.
References ODESolver::stepState::last, and T.
|
inline |
The last entry in the list (const access)
Definition at line 142 of file UILList.H.
References ODESolver::stepState::last, and T.
|
inline |
Remove and return head.
Definition at line 149 of file UILList.H.
References LList< LListBase, T >::removeHead(), and T.
Remove and return element.
Definition at line 155 of file UILList.H.
References PackedList< Width >::remove(), and T.
Remove and return item specified by iterator.
Definition at line 161 of file UILList.H.
References PackedList< Width >::remove(), and T.
Copy assignment.
Definition at line 46 of file UILList.C.
References append(), UILList< LListBase, T >::cbegin(), UILList< LListBase, T >::cend(), and interfaceDefinitions::clear().
Equality. True both lists are element-wise equal.
(using value_type::operator==). Takes linear time.
Definition at line 58 of file UILList.C.
References UILList< LListBase, T >::cbegin().
The opposite of the equality operation. Takes linear time.
Definition at line 83 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 36 of file UILListIO.C.
References FUNCTION_NAME, Foam::nl, os(), and T.
|
inline |
|
inline |
Iterator to first item in list with const access.
Definition at line 383 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 395 of file UILList.H.
Referenced by UILList< LListBase, T >::rbegin().
|
inline |
Iterator to first item in list with const access.
Definition at line 401 of file UILList.H.
References edgeFaceCirculator::cbegin().
|
inline |
Iterator to last item in list with const access.
Definition at line 407 of file UILList.H.
References UILList< LListBase, T >::crbegin().
|
inline |
End of list for forward iterators.
Definition at line 414 of file UILList.H.
Referenced by KirchhoffShell::solveDisplacement().
|
inline |
End of list for forward iterators.
Definition at line 420 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 432 of file UILList.H.
Referenced by UILList< LListBase, T >::rend().
|
inline |
End of list for forward iterators.
Definition at line 438 of file UILList.H.
References UILList< LListBase, T >::cend().
|
inline |
End of list for reverse iterators.
Definition at line 444 of file UILList.H.
References UILList< LListBase, T >::crend().
Write UILList to Ostream with line breaks, as per writeList() with shortLen=-1