tmp/tmp6hgkkayc/{from.md → to.md}
RENAMED
|
@@ -50,11 +50,11 @@ constexpr sentinel(sentinel<!Const> i)
|
|
| 50 |
template<bool OtherConst>
|
| 51 |
requires sentinel_for<inner-sentinel<Const>, inner-iterator<OtherConst>>
|
| 52 |
friend constexpr bool operator==(const iterator<OtherConst>& x, const sentinel& y);
|
| 53 |
```
|
| 54 |
|
| 55 |
-
*Effects:* Equivalent to `return x.`*`inner_`*` == y.`*`inner_`*`;`
|
| 56 |
|
| 57 |
``` cpp
|
| 58 |
template<bool OtherConst>
|
| 59 |
requires sized_sentinel_for<inner-sentinel<Const>, inner-iterator<OtherConst>>
|
| 60 |
friend constexpr range_difference_t<maybe-const<OtherConst, InnerView>>
|
|
@@ -64,7 +64,7 @@ template<bool OtherConst>
|
|
| 64 |
requires sized_sentinel_for<inner-sentinel<Const>, inner-iterator<OtherConst>>
|
| 65 |
friend constexpr range_difference_t<maybe-const<OtherConst, InnerView>>
|
| 66 |
operator-(const sentinel& x, const iterator<OtherConst>& y);
|
| 67 |
```
|
| 68 |
|
| 69 |
-
*Effects:* Equivalent to `return x.`*`inner_`*` - y.`*`inner_`*`;`
|
| 70 |
|
|
|
|
| 50 |
template<bool OtherConst>
|
| 51 |
requires sentinel_for<inner-sentinel<Const>, inner-iterator<OtherConst>>
|
| 52 |
friend constexpr bool operator==(const iterator<OtherConst>& x, const sentinel& y);
|
| 53 |
```
|
| 54 |
|
| 55 |
+
*Effects:* Equivalent to: `return x.`*`inner_`*` == y.`*`inner_`*`;`
|
| 56 |
|
| 57 |
``` cpp
|
| 58 |
template<bool OtherConst>
|
| 59 |
requires sized_sentinel_for<inner-sentinel<Const>, inner-iterator<OtherConst>>
|
| 60 |
friend constexpr range_difference_t<maybe-const<OtherConst, InnerView>>
|
|
|
|
| 64 |
requires sized_sentinel_for<inner-sentinel<Const>, inner-iterator<OtherConst>>
|
| 65 |
friend constexpr range_difference_t<maybe-const<OtherConst, InnerView>>
|
| 66 |
operator-(const sentinel& x, const iterator<OtherConst>& y);
|
| 67 |
```
|
| 68 |
|
| 69 |
+
*Effects:* Equivalent to: `return x.`*`inner_`*` - y.`*`inner_`*`;`
|
| 70 |
|