[#bsl-List_Iterator-2constructor-0a] = xref:bsl.adoc[bsl]::xref:bsl/List_Iterator.adoc[List_Iterator]::List_Iterator :relfileprefix: ../../ :mrdocs: Create an iterator with the same value as the specified `other`. == Synopsis Declared in `<bslstl_list.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- List_Iterator(xref:bsl/List_Iterator.adoc[NcIter] const& other); ---- == Description 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. 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. == Parameters [cols="1,4"] |=== | Name| Description | *other* | iterator whose value is copied |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#