Returns the exponent bits of this number.
| 6746 | |
| 6747 | // Returns the exponent bits of this number. |
| 6748 | Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } |
| 6749 | |
| 6750 | // Returns the fraction bits of this number. |
| 6751 | Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } |
nothing calls this directly
no outgoing calls
no test coverage detected