tmp/tmp6ahf0sqe/{from.md → to.md}
RENAMED
|
@@ -15,12 +15,12 @@ template<class T>
|
|
| 15 |
template<class T>
|
| 16 |
concept regular = semiregular<T> && equality_comparable<T>;
|
| 17 |
```
|
| 18 |
|
| 19 |
[*Note 1*: The `semiregular` concept is modeled by types that behave
|
| 20 |
-
similarly to
|
| 21 |
comparable with `==`. — *end note*]
|
| 22 |
|
| 23 |
[*Note 2*: The `regular` concept is modeled by types that behave
|
| 24 |
-
similarly to
|
| 25 |
`==`. — *end note*]
|
| 26 |
|
|
|
|
| 15 |
template<class T>
|
| 16 |
concept regular = semiregular<T> && equality_comparable<T>;
|
| 17 |
```
|
| 18 |
|
| 19 |
[*Note 1*: The `semiregular` concept is modeled by types that behave
|
| 20 |
+
similarly to fundamental types like `int`, except that they need not be
|
| 21 |
comparable with `==`. — *end note*]
|
| 22 |
|
| 23 |
[*Note 2*: The `regular` concept is modeled by types that behave
|
| 24 |
+
similarly to fundamental types like `int` and that are comparable with
|
| 25 |
`==`. — *end note*]
|
| 26 |
|