Create an iterator that has the same value as the specified other iterator. If the (template parameter) type VALUE is not const‐qualified, then this constructor is the copy constructor; otherwise, the copy constructor is implicitly generated. Note that this method is marked "IMPLICIT" in case it is not the copy constructor.
Synopsis
Declared in <bslstl_list.h>
List_Iterator(NcIter const& other);
Description
Note that this means that a List_Iterator<const VALUE> can be copy constructed or assigned to from a List_Iterator<VALUE>, but not vice‐versa.
Created with MrDocs