operator-(ranges::chunk_view::inner-iterator)
|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
Helper items | |||||||||||||||||
|
Member functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
friend
constexpr difference_type operator-
(
std::default_sentinel_t s,
const
/*inner-iterator*/
& i )
|
(1) | (since C++23) |
friend
constexpr difference_type operator-
(
const
/*inner-iterator*/
& i,
std::default_sentinel_t s )
|
(2) | (since C++23) |
Calculates the distance (in number of underlying elements) between the iterator and sentinel
Let parent_
be the underlying pointer to the enclosing chunk_view
.
return ranges::min (i.parent_ - >remainder_,
ranges::end (i.parent_ - >base_) - *i.parent_ - >current_) ;
These functions are not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when std::ranges::chunk_view::inner-iterator
Parameters
i | - | the iterator |
s | - | the sentinel |
Return value
The distance between given iterator and sentinel.
Example
This section is incomplete Reason: no example |
See also
(C++23)
|
increments the iterator (public member function) |