tmp/tmp99e0os68/{from.md → to.md}
RENAMED
|
@@ -7,38 +7,38 @@ the following:
|
|
| 7 |
``` cpp
|
| 8 |
template <class T> bool operator!=(const T& x, const T& y);
|
| 9 |
```
|
| 10 |
|
| 11 |
*Requires:* Type `T` is `EqualityComparable`
|
| 12 |
-
(Table [[equalitycomparable]]).
|
| 13 |
|
| 14 |
*Returns:* `!(x == y)`.
|
| 15 |
|
| 16 |
``` cpp
|
| 17 |
template <class T> bool operator>(const T& x, const T& y);
|
| 18 |
```
|
| 19 |
|
| 20 |
*Requires:* Type `T` is `LessThanComparable`
|
| 21 |
-
(Table [[lessthancomparable]]).
|
| 22 |
|
| 23 |
*Returns:* `y < x`.
|
| 24 |
|
| 25 |
``` cpp
|
| 26 |
template <class T> bool operator<=(const T& x, const T& y);
|
| 27 |
```
|
| 28 |
|
| 29 |
*Requires:* Type `T` is `LessThanComparable`
|
| 30 |
-
(Table [[lessthancomparable]]).
|
| 31 |
|
| 32 |
*Returns:* `!(y < x)`.
|
| 33 |
|
| 34 |
``` cpp
|
| 35 |
template <class T> bool operator>=(const T& x, const T& y);
|
| 36 |
```
|
| 37 |
|
| 38 |
*Requires:* Type `T` is `LessThanComparable`
|
| 39 |
-
(Table [[lessthancomparable]]).
|
| 40 |
|
| 41 |
*Returns:* `!(x < y)`.
|
| 42 |
|
| 43 |
In this library, whenever a declaration is provided for an `operator!=`,
|
| 44 |
`operator>`, `operator>=`, or `operator<=`, and requirements and
|
|
|
|
| 7 |
``` cpp
|
| 8 |
template <class T> bool operator!=(const T& x, const T& y);
|
| 9 |
```
|
| 10 |
|
| 11 |
*Requires:* Type `T` is `EqualityComparable`
|
| 12 |
+
(Table [[tab:equalitycomparable]]).
|
| 13 |
|
| 14 |
*Returns:* `!(x == y)`.
|
| 15 |
|
| 16 |
``` cpp
|
| 17 |
template <class T> bool operator>(const T& x, const T& y);
|
| 18 |
```
|
| 19 |
|
| 20 |
*Requires:* Type `T` is `LessThanComparable`
|
| 21 |
+
(Table [[tab:lessthancomparable]]).
|
| 22 |
|
| 23 |
*Returns:* `y < x`.
|
| 24 |
|
| 25 |
``` cpp
|
| 26 |
template <class T> bool operator<=(const T& x, const T& y);
|
| 27 |
```
|
| 28 |
|
| 29 |
*Requires:* Type `T` is `LessThanComparable`
|
| 30 |
+
(Table [[tab:lessthancomparable]]).
|
| 31 |
|
| 32 |
*Returns:* `!(y < x)`.
|
| 33 |
|
| 34 |
``` cpp
|
| 35 |
template <class T> bool operator>=(const T& x, const T& y);
|
| 36 |
```
|
| 37 |
|
| 38 |
*Requires:* Type `T` is `LessThanComparable`
|
| 39 |
+
(Table [[tab:lessthancomparable]]).
|
| 40 |
|
| 41 |
*Returns:* `!(x < y)`.
|
| 42 |
|
| 43 |
In this library, whenever a declaration is provided for an `operator!=`,
|
| 44 |
`operator>`, `operator>=`, or `operator<=`, and requirements and
|