operator+,- (ranges::enumerate_view:: iterator )
|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
Helper items | |||||||||||||||||
|
|
Member functions | ||||
Deduction guides | ||||
Nested classes | ||||
Iterator | ||||
operator+
(enumerate_view::
iterator
)
operator- (enumerate_view:: iterator ) |
||||
Sentinel | ||||
friend
constexpr
/* iterator */
operator
+
(
const
/* iterator */
&
i, difference_type n
)
|
(1) | (since C++23) |
friend
constexpr
/* iterator */
operator
+
(
difference_type n,
const
/* iterator */
&
i
)
|
(2) | (since C++23) |
friend
constexpr
/* iterator */
operator
-
(
const
/* iterator */
&
i, difference_type n
)
|
(3) | (since C++23) |
friend
constexpr
difference_type
operator - ( const /* iterator */ & i, const /* iterator */ & j ) noexcept ; |
(4) | (since C++23) |
Performs iterator arithmetic or calculates the distance.
pos_
is the underlying index, and
Base
is the (possibly const-qualified) type of underlying view.
Equivalent to:
These functions are not visible to ordinary
unqualified
or
qualified lookup
, and can only be found by
argument-dependent lookup
when
enumerate_view::
iterator
<Const>
is an associated class of the arguments.
Parameters
i, j | - | the iterators |
n | - | position relative to current location |
Return value
Example
This section is incomplete
Reason: no example |
Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 3912 | C++23 | overload (4) was not noexcept | it is noexcept |
See also
advances or decrements the underlying iterator
(public member function) |