| 80 | bool IsZeroValue() const { return NativeValue() == 0; } |
| 81 | |
| 82 | int64_t NativeValue() const { return static_cast<int64_t>(*this); } |
| 83 | |
| 84 | // NOLINTNEXTLINE(google-explicit-constructor) |
| 85 | operator int64_t() const noexcept { return value_; } |
no outgoing calls