Create an iterator copying the position of another iterator.
Declared in <bslstl_treeiterator.h>
template<class NON_CONST_ITERATOR>
TreeIterator(NON_CONST_ITERATOR const& original)
requires bsl::is_convertible<NON_CONST_ITERATOR,
NcIter>::value;
Create an iterator at the same position as the specified original iterator. Note that this constructor enables converting from modifiable to const iterator types.
| Name | Description |
|---|---|
| original | iterator whose position is copied |