diff options
Diffstat (limited to 'number.cpp')
-rw-r--r-- | number.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -70,6 +70,26 @@ number::to_uint32() const return (*this == 0) ? 0 : _operands.front(); } +std::uint64_t +number::to_uint64() const +{ + auto size = _operands.size(); + + if (size > 2) { + throw std::out_of_range("> UINT64_MAX"); + } + + std::uint64_t result = 0; + + for (auto it = _operands.crbegin(); it != _operands.crend(); ++it) { + result <<= 32; + + result |= (*it); + } + + return result; +} + number::operator bool() const { return *this != 0; |