Constructors
Declared in <bslstl_list.h>
Create a singular iterator (i.e., one that cannot be incremented, decremented, or dereferenced until assigned a non-singular value).
List_Iterator();
» more...
Create an iterator with the same value as the specified other.
List_Iterator(NcIter const& other);
» more...
Create an iterator that references the value pointed to by nodePtr.
explicit
List_Iterator(Node* nodePtr);
» more...
| Name | Description |
|---|---|
| other | iterator whose value is copied |
| nodePtr | node this iterator will reference, or null |