Return 1 if positive or zero, -1 if strictly negative.
| 129 | |
| 130 | /// Return 1 if positive or zero, -1 if strictly negative. |
| 131 | int64_t Sign() const { |
| 132 | return 1 | (static_cast<int64_t>(array_[kHighWordIndex]) >> 63); |
| 133 | } |
| 134 | |
| 135 | bool IsNegative() const { return static_cast<int64_t>(array_[kHighWordIndex]) < 0; } |
| 136 |
no outgoing calls