std::ranges::transform_view<V,F>:: end
|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
Helper items | |||||||||||||||||
|
|
Member functions | ||||
transform_view::end
|
||||
Deduction guides | ||||
Iterator | ||||
Sentinel | ||||
constexpr
/*sentinel*/
<
false
>
end
(
)
;
|
(1) | (since C++20) |
constexpr
/*iterator*/
<
false
>
end
(
)
requires
ranges::
common_range
<
V
>
;
|
(2) | (since C++20) |
constexpr
/*sentinel*/
<
true
>
end
(
)
const
requires
ranges::
range
<
const
V
>
&&
|
(3) | (since C++20) |
constexpr
/*iterator*/
<
true
>
end
(
)
const
requires
ranges::
common_range
<
const
V
>
&&
|
(4) | (since C++20) |
Returns a
sentinel
or an
iterator
representing the end of the
transform_view
.
Let
base_
be the underlying view. Equivalent to:
Parameters
(none)
Return value
Notes
end()
returns an iterator if and only if the underlying view is a
common_range
:
transform_view
<
V,F
>
models
common_range
whenever
V
does.
Example
This section is incomplete
Reason: no example |
See also
returns an iterator to the beginning
(public member function) |
|
(C++20)
|
returns a sentinel indicating the end of a range
(customization point object) |