| 1525 | |
| 1526 | // Returns true iff Float has the implicit bit which is not stored. |
| 1527 | template <typename Float> constexpr auto has_implicit_bit() -> bool { |
| 1528 | // An 80-bit FP number has a 64-bit significand an no implicit bit. |
| 1529 | return std::numeric_limits<Float>::digits != 64; |
| 1530 | } |
| 1531 | |
| 1532 | // Returns the number of significand bits stored in Float. The implicit bit is |
| 1533 | // not counted since it is not stored. |
nothing calls this directly
no outgoing calls
no test coverage detected