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