\brief Return 1 if positive or 0, -1 if strictly negative
| 225 | |
| 226 | /// \brief Return 1 if positive or 0, -1 if strictly negative |
| 227 | int64_t Sign() const { return 1 | (value_ >> (kBitWidth - 1)); } |
| 228 | |
| 229 | bool IsNegative() const { return value_ < 0; } |
| 230 |
no outgoing calls
no test coverage detected