abs() is not defined for int128_t. Name it abs() so it can be compatible with native int types in templates.
| 119 | /// abs() is not defined for int128_t. Name it abs() so it can be compatible with |
| 120 | /// native int types in templates. |
| 121 | inline int128_t abs(const int128_t& x) { return (x < 0) ? -x : x; } |
| 122 | |
| 123 | /// Get the high and low bits of an int128_t |
| 124 | inline uint64_t HighBits(int128_t x) { |
no outgoing calls