Returns the sign bit of this number.
| 6752 | |
| 6753 | // Returns the sign bit of this number. |
| 6754 | Bits sign_bit() const { return kSignBitMask & u_.bits_; } |
| 6755 | |
| 6756 | // Returns true iff this is NAN (not a number). |
| 6757 | bool is_nan() const { |
nothing calls this directly
no outgoing calls
no test coverage detected