Returns the fraction bits of this number.
| 6749 | |
| 6750 | // Returns the fraction bits of this number. |
| 6751 | Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } |
| 6752 | |
| 6753 | // Returns the sign bit of this number. |
| 6754 | Bits sign_bit() const { return kSignBitMask & u_.bits_; } |
nothing calls this directly
no outgoing calls
no test coverage detected