![]() |
TrinityCore
|
#include <LinkedList.h>
Public Types | |
| using | iterator_category = std::bidirectional_iterator_tag |
| using | value_type = _Ty |
| using | difference_type = ptrdiff_t |
| using | base_pointer = std::conditional_t< std::is_const_v< _Ty >, LinkedListElement const, LinkedListElement > * |
| using | pointer = _Ty * |
| using | reference = _Ty & |
Public Member Functions | |
| Iterator () | |
| Iterator (base_pointer _Pnode) | |
| reference | operator* () const |
| pointer | operator-> () const |
| base_pointer | node () const |
| Iterator & | operator++ () |
| Iterator | operator++ (int) |
| Iterator & | operator-- () |
| Iterator | operator-- (int) |
| bool | operator== (Iterator const &_Right) const =default |
Protected Attributes | |
| base_pointer | _Ptr |
Definition at line 147 of file LinkedList.h.
| using LinkedListHead::Iterator< _Ty >::base_pointer = std::conditional_t<std::is_const_v<_Ty>, LinkedListElement const, LinkedListElement>* |
Definition at line 153 of file LinkedList.h.
| using LinkedListHead::Iterator< _Ty >::difference_type = ptrdiff_t |
Definition at line 152 of file LinkedList.h.
| using LinkedListHead::Iterator< _Ty >::iterator_category = std::bidirectional_iterator_tag |
Definition at line 150 of file LinkedList.h.
| using LinkedListHead::Iterator< _Ty >::pointer = _Ty* |
Definition at line 154 of file LinkedList.h.
| using LinkedListHead::Iterator< _Ty >::reference = _Ty& |
Definition at line 155 of file LinkedList.h.
| using LinkedListHead::Iterator< _Ty >::value_type = _Ty |
Definition at line 151 of file LinkedList.h.
|
inline |
Definition at line 157 of file LinkedList.h.
|
inlineexplicit |
Definition at line 161 of file LinkedList.h.
|
inline |
|
inline |
Definition at line 165 of file LinkedList.h.
|
inline |
Definition at line 180 of file LinkedList.h.
|
inline |
Definition at line 186 of file LinkedList.h.
|
inline |
Definition at line 193 of file LinkedList.h.
|
inline |
Definition at line 199 of file LinkedList.h.
|
inline |
Definition at line 170 of file LinkedList.h.
|
default |
|
protected |
Definition at line 210 of file LinkedList.h.