26
Ranges library
[ranges]
26.3
Range access
[range.access]
26.3.8
ranges::crbegin
[range.access.crbegin]
1
#
The name
ranges
::
crbegin
denotes a customization point object (
[customization.
point.
object]
)
.
Given a subexpression
E
with type
T
, let
t
be an lvalue that denotes the reified object for
E
.
Then:
(1.1)
If
E
is an rvalue and
enable_
borrowed_
range
<
remove_
cv_
t
<
T
>
>
is
false
,
ranges
::
crbegin
(
E
)
is ill-formed
.
(1.2)
Otherwise, let
U
be
ranges
::
rbegin
(
possibly-const-range
(
t
)
)
.
ranges
::
crbegin
(
E
)
is expression-equivalent to
const_
iterator
<
decltype
(
U
)
>
(
U
)
.
2
#
[
Note
1
:
Whenever
ranges
::
crbegin
(
E
)
is a valid expression, its type models
input_
or_
output_
iterator
and
constant-iterator
.
—
end note
]