std::move_iterator::
base
From cppreference.com
<
cpp
|
iterator
|
move iterator
C++
Language
Standard library headers
Concepts
Utilities library
Strings library
Containers library
Algorithms library
Iterators library
Numerics library
Input/output library
Localizations library
Regular expressions library
(C++11)
Atomic operations library
(C++11)
Thread support library
(C++11)
Iterator library
Iterator primitives
iterator_traits
input_iterator_tag
output_iterator_tag
forward_iterator_tag
bidirectional_iterator_tag
random_access_iterator_tag
iterator
Iterator adaptors
reverse_iterator
move_iterator
(C++11)
back_insert_iterator
front_insert_iterator
insert_iterator
make_reverse_iterator
(C++14)
make_move_iterator
(C++11)
back_inserter
front_inserter
inserter
Stream iterators
istream_iterator
ostream_iterator
istreambuf_iterator
ostreambuf_iterator
Iterator operations
advance
distance
prev
(C++11)
next
(C++11)
Range access
begin
cbegin
(C++11)
(C++14)
end
cend
(C++11)
(C++14)
rbegin
crbegin
(C++14)
(C++14)
rend
crend
(C++14)
(C++14)
std::move_iterator
Member functions
move_iterator::move_iterator
move_iterator::operator=
move_iterator::base
move_iterator::operator*
move_iterator::operator->
move_iterator::operator[]
move_iterator::operator++
move_iterator::operator+
move_iterator::operator+=
move_iterator::operator--
move_iterator::operator-
move_iterator::operator-=
Non-member functions
operator==
operator!=
operator<
operator>
operator+
operator-
Iterator base
(
)
const
;
Returns the underlying base iterator.
Contents
1
Parameters
2
Return value
3
Exceptions
4
Example
5
See also
[
edit
]
Parameters
(none)
[
edit
]
Return value
The underlying iterator.
[
edit
]
Exceptions
(none)
[
edit
]
Example
This section is incomplete
Reason: no example
[
edit
]
See also
operator*
operator->
accesses the pointed-to element
(public member function)
Category
:
Todo no example