[#bsl-List_Iterator-2constructor-0a] = xref:bsl.adoc[bsl]::xref:bsl/List_Iterator.adoc[List_Iterator]::List_Iterator :relfileprefix: ../../ :mrdocs: 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>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- List_Iterator(xref:bsl/List_Iterator.adoc[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. [.small]#Created with https://www.mrdocs.com[MrDocs]#