A primitive non-const node iterator. More...
Public Member Functions | |
| iterator (const iterator &)=default | |
| Copy construct. More... | |
| iterator (SLListBase *list, link *item) | |
| Construct for a node on the list. More... | |
| link * | get_node () const noexcept |
| The storage node. More... | |
| bool | good () const noexcept |
| Pointing at a valid storage node. More... | |
| void | prev ()=delete |
| Cannot move backward through list. More... | |
| void | next () |
| Move forward through list. More... | |
| void | operator= (const iterator &iter) |
| Copy assignment. More... | |
| bool | operator== (const iterator &iter) const |
| bool | operator!= (const iterator &iter) const |
Friends | |
| class | SLListBase |
| class | const_iterator |
A primitive non-const node iterator.
Must normally be extended by inheriting classes.
Definition at line 248 of file SLListBase.H.
|
inline |
Construct for a node on the list.
Definition at line 163 of file SLListBaseI.H.
|
inlinenoexcept |
The storage node.
Definition at line 180 of file SLListBaseI.H.
Referenced by SLListBase::remove().

|
inlinenoexcept |
Pointing at a valid storage node.
Definition at line 186 of file SLListBaseI.H.
|
inlinedelete |
Cannot move backward through list.
|
inline |
Move forward through list.
Definition at line 192 of file SLListBaseI.H.
Referenced by SLListBase::remove().

|
inline |
Copy assignment.
Definition at line 209 of file SLListBaseI.H.
|
inline |
Definition at line 217 of file SLListBaseI.H.
|
inline |
Definition at line 223 of file SLListBaseI.H.
|
friend |
Definition at line 250 of file SLListBase.H.
|
friend |
Definition at line 251 of file SLListBase.H.