Constructors
Declared in <prevector.h>
Constructs an iterator that does not refer to any element.
const_iterator() = default;
» more...
Constructs a const iterator from a mutable iterator.
const_iterator(iterator x);
» more...
Constructs an iterator referring to the element at ptr_.
const_iterator(T const* ptr_);
» more...
| Name | Description |
|---|---|
| x | The mutable iterator to convert. |
| ptr_ | Pointer to the element the iterator refers to. |