diff options
Diffstat (limited to 'number.cpp')
-rw-r--r-- | number.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -70,6 +70,11 @@ number::to_uint32() const return (*this == 0) ? 0 : _operands.front(); } +number::operator bool() const +{ + return *this != 0; +} + /* }}} */ /* Operations {{{ */ @@ -226,6 +231,12 @@ number::operator!=(const number &n) const return _operands != n._operands; } +bool +number::operator!() const +{ + return !static_cast<bool>(*this); +} + /* }}} */ /* Assignment operators {{{ */ |