From Jason Turner

[numeric.limits.members]

Diff to HTML by rtfpessoa

tmp/tmpr91x9gaf/{from.md → to.md} RENAMED
@@ -1,10 +1,13 @@
1
  #### `numeric_limits` members <a id="numeric.limits.members">[[numeric.limits.members]]</a>
2
 
3
  Each member function defined in this subclause is signal-safe
4
  [[support.signal]].
5
 
 
 
 
6
  ``` cpp
7
  static constexpr T min() noexcept;
8
  ```
9
 
10
  Minimum finite value.[^3]
@@ -39,11 +42,11 @@ static constexpr int digits;
39
  Number of `radix` digits that can be represented without change.
40
 
41
  For integer types, the number of non-sign bits in the representation.
42
 
43
  For floating-point types, the number of `radix` digits in the
44
- mantissa.[^6]
45
 
46
  ``` cpp
47
  static constexpr int digits10;
48
  ```
49
 
@@ -220,11 +223,11 @@ Meaningful for all floating-point types.
220
 
221
  ``` cpp
222
  static constexpr bool is_iec559;
223
  ```
224
 
225
- `true` if and only if the type adheres to ISO/IEC/IEEE 60559.[^22]
226
 
227
  [*Note 1*: The value is `true` for any of the types `float16_t`,
228
  `float32_t`, `float64_t`, or `float128_t`, if
229
  present [[basic.extended.fp]]. — *end note*]
230
 
 
1
  #### `numeric_limits` members <a id="numeric.limits.members">[[numeric.limits.members]]</a>
2
 
3
  Each member function defined in this subclause is signal-safe
4
  [[support.signal]].
5
 
6
+ [*Note 1*: The arithmetic specification described in ISO/IEC
7
+ 10967-1:2012 is commonly termed LIA-1. — *end note*]
8
+
9
  ``` cpp
10
  static constexpr T min() noexcept;
11
  ```
12
 
13
  Minimum finite value.[^3]
 
42
  Number of `radix` digits that can be represented without change.
43
 
44
  For integer types, the number of non-sign bits in the representation.
45
 
46
  For floating-point types, the number of `radix` digits in the
47
+ significand.[^6]
48
 
49
  ``` cpp
50
  static constexpr int digits10;
51
  ```
52
 
 
223
 
224
  ``` cpp
225
  static constexpr bool is_iec559;
226
  ```
227
 
228
+ `true` if and only if the type adheres to ISO/IEC 60559.[^22]
229
 
230
  [*Note 1*: The value is `true` for any of the types `float16_t`,
231
  `float32_t`, `float64_t`, or `float128_t`, if
232
  present [[basic.extended.fp]]. — *end note*]
233