From Jason Turner

[numeric.limits]

Diff to HTML by rtfpessoa

tmp/tmpaahu5o3h/{from.md → to.md} RENAMED
@@ -75,10 +75,13 @@ not have specializations.
75
  #### `numeric_limits` members <a id="numeric.limits.members">[[numeric.limits.members]]</a>
76
 
77
  Each member function defined in this subclause is signal-safe
78
  [[support.signal]].
79
 
 
 
 
80
  ``` cpp
81
  static constexpr T min() noexcept;
82
  ```
83
 
84
  Minimum finite value.[^3]
@@ -113,11 +116,11 @@ static constexpr int digits;
113
  Number of `radix` digits that can be represented without change.
114
 
115
  For integer types, the number of non-sign bits in the representation.
116
 
117
  For floating-point types, the number of `radix` digits in the
118
- mantissa.[^6]
119
 
120
  ``` cpp
121
  static constexpr int digits10;
122
  ```
123
 
@@ -294,11 +297,11 @@ Meaningful for all floating-point types.
294
 
295
  ``` cpp
296
  static constexpr bool is_iec559;
297
  ```
298
 
299
- `true` if and only if the type adheres to ISO/IEC/IEEE 60559.[^22]
300
 
301
  [*Note 1*: The value is `true` for any of the types `float16_t`,
302
  `float32_t`, `float64_t`, or `float128_t`, if
303
  present [[basic.extended.fp]]. — *end note*]
304
 
 
75
  #### `numeric_limits` members <a id="numeric.limits.members">[[numeric.limits.members]]</a>
76
 
77
  Each member function defined in this subclause is signal-safe
78
  [[support.signal]].
79
 
80
+ [*Note 1*: The arithmetic specification described in ISO/IEC
81
+ 10967-1:2012 is commonly termed LIA-1. — *end note*]
82
+
83
  ``` cpp
84
  static constexpr T min() noexcept;
85
  ```
86
 
87
  Minimum finite value.[^3]
 
116
  Number of `radix` digits that can be represented without change.
117
 
118
  For integer types, the number of non-sign bits in the representation.
119
 
120
  For floating-point types, the number of `radix` digits in the
121
+ significand.[^6]
122
 
123
  ``` cpp
124
  static constexpr int digits10;
125
  ```
126
 
 
297
 
298
  ``` cpp
299
  static constexpr bool is_iec559;
300
  ```
301
 
302
+ `true` if and only if the type adheres to ISO/IEC 60559.[^22]
303
 
304
  [*Note 1*: The value is `true` for any of the types `float16_t`,
305
  `float32_t`, `float64_t`, or `float128_t`, if
306
  present [[basic.extended.fp]]. — *end note*]
307