From Jason Turner

[range.access.cbegin]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp733_xp2_/{from.md → to.md} +12 -0
tmp/tmp733_xp2_/{from.md → to.md} RENAMED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### `ranges::cbegin` <a id="range.access.cbegin">[[range.access.cbegin]]</a>
2
+
3
+ The name `ranges::cbegin` denotes a customization point object
4
+ [[customization.point.object]]. The expression `ranges::{}cbegin(E)` for
5
+ a subexpression `E` of type `T` is expression-equivalent to:
6
+
7
+ - `ranges::begin(static_cast<const T&>(E))` if `E` is an lvalue.
8
+ - Otherwise, `ranges::begin(static_cast<const T&&>(E))`.
9
+
10
+ [*Note 1*: Whenever `ranges::cbegin(E)` is a valid expression, its type
11
+ models `input_or_output_iterator`. — *end note*]
12
+