From Jason Turner

[range.access.crend]

Diff to HTML by rtfpessoa

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