tmp/tmpknd__pt2/{from.md → to.md}
RENAMED
|
@@ -19,26 +19,29 @@ that case, the author of that class type should specialize
|
|
| 19 |
|
| 20 |
``` cpp
|
| 21 |
static constexpr Rep zero();
|
| 22 |
```
|
| 23 |
|
| 24 |
-
*Returns:* `Rep(0)`.
|
| 25 |
-
`Rep()` may have some other meaning, such as an uninitialized value.
|
| 26 |
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
``` cpp
|
| 30 |
static constexpr Rep min();
|
| 31 |
```
|
| 32 |
|
| 33 |
*Returns:* `numeric_limits<Rep>::lowest()`.
|
| 34 |
|
| 35 |
-
The value returned shall compare less than or equal to
|
|
|
|
| 36 |
|
| 37 |
``` cpp
|
| 38 |
static constexpr Rep max();
|
| 39 |
```
|
| 40 |
|
| 41 |
*Returns:* `numeric_limits<Rep>::max()`.
|
| 42 |
|
| 43 |
-
The value returned shall compare greater than `zero()`.
|
| 44 |
|
|
|
|
| 19 |
|
| 20 |
``` cpp
|
| 21 |
static constexpr Rep zero();
|
| 22 |
```
|
| 23 |
|
| 24 |
+
*Returns:* `Rep(0)`.
|
|
|
|
| 25 |
|
| 26 |
+
[*Note 1*: `Rep(0)` is specified instead of `Rep()` because `Rep()` may
|
| 27 |
+
have some other meaning, such as an uninitialized value. — *end note*]
|
| 28 |
+
|
| 29 |
+
*Remarks:* The value returned shall be the additive identity.
|
| 30 |
|
| 31 |
``` cpp
|
| 32 |
static constexpr Rep min();
|
| 33 |
```
|
| 34 |
|
| 35 |
*Returns:* `numeric_limits<Rep>::lowest()`.
|
| 36 |
|
| 37 |
+
*Remarks:* The value returned shall compare less than or equal to
|
| 38 |
+
`zero()`.
|
| 39 |
|
| 40 |
``` cpp
|
| 41 |
static constexpr Rep max();
|
| 42 |
```
|
| 43 |
|
| 44 |
*Returns:* `numeric_limits<Rep>::max()`.
|
| 45 |
|
| 46 |
+
*Remarks:* The value returned shall compare greater than `zero()`.
|
| 47 |
|