\brief Get the high bits of the two's complement representation of the number.
| 636 | |
| 637 | /// \brief Get the high bits of the two's complement representation of the number. |
| 638 | constexpr int64_t high_bits() const { |
| 639 | #if ARROW_LITTLE_ENDIAN |
| 640 | return static_cast<int64_t>(array_[1]); |
| 641 | #else |
| 642 | return static_cast<int64_t>(array_[0]); |
| 643 | #endif |
| 644 | } |
| 645 | |
| 646 | /// \brief Get the low bits of the two's complement representation of the number. |
| 647 | constexpr uint64_t low_bits() const { |
no outgoing calls
no test coverage detected