Constructors
Declared in <bslstl_randomaccessiterator.h>
Construct the default value for this iterator type. All default- constructed RandomAccessIterator objects represent non-dereferenceable iterators into the same empty range. They do not have a singular value unless an object of the type specified by the template parameter ITER_IMP has a singular value after value-initialization.
RandomAccessIterator();
» more...
Construct a random access iterator from another (compatible) RandomAccessIterator type, e.g., a mutable iterator of the same type. Note that this constructor may be the copy constructor (inhibiting the implicit declaration of a copy constructor above), or may be an additional overload.
RandomAccessIterator(RandomAccessIterator<UnCvqT, ITER_IMP, TAG_TYPE> const& other);
» more...
Construct a random access iterator having the specified implementation of the parameterized ITER_IMP type.
RandomAccessIterator(ITER_IMP const& implementation);
» more...