tmp/tmpate_jw3o/{from.md → to.md}
RENAMED
|
@@ -1,13 +1,16 @@
|
|
| 1 |
-
###
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
-
|
| 6 |
enum float_round_style;
|
| 7 |
enum float_denorm_style;
|
| 8 |
|
|
|
|
|
|
|
|
|
|
| 9 |
template<> class numeric_limits<bool>;
|
| 10 |
|
| 11 |
template<> class numeric_limits<char>;
|
| 12 |
template<> class numeric_limits<signed char>;
|
| 13 |
template<> class numeric_limits<unsigned char>;
|
|
|
|
| 1 |
+
### Header `<limits>` synopsis <a id="limits.syn">[[limits.syn]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
+
// [fp.style], floating-point type properties
|
| 6 |
enum float_round_style;
|
| 7 |
enum float_denorm_style;
|
| 8 |
|
| 9 |
+
// [numeric.limits], class template numeric_limits
|
| 10 |
+
template<class T> class numeric_limits;
|
| 11 |
+
|
| 12 |
template<> class numeric_limits<bool>;
|
| 13 |
|
| 14 |
template<> class numeric_limits<char>;
|
| 15 |
template<> class numeric_limits<signed char>;
|
| 16 |
template<> class numeric_limits<unsigned char>;
|