diff options
Diffstat (limited to 'include/o3tl/strong_int.hxx')
-rw-r--r-- | include/o3tl/strong_int.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/o3tl/strong_int.hxx b/include/o3tl/strong_int.hxx index 3db958212229..82107955897f 100644 --- a/include/o3tl/strong_int.hxx +++ b/include/o3tl/strong_int.hxx @@ -113,10 +113,16 @@ public: strong_int& operator+=(strong_int const & other) { m_value += other.m_value; return *this; } strong_int& operator-=(strong_int const & other) { m_value -= other.m_value; return *this; } strong_int& operator%=(strong_int const & other) { m_value %= other.m_value; return *this; } + strong_int& operator*=(strong_int const & other) { m_value *= other.m_value; return *this; } + strong_int& operator/=(strong_int const & other) { m_value /= other.m_value; return *this; } [[nodiscard]] strong_int operator%(strong_int const & other) const { return strong_int(m_value % other.m_value); } [[nodiscard]] strong_int operator-() const { return strong_int(-m_value); } + [[nodiscard]] + strong_int operator*(strong_int const & other) const { return strong_int(m_value * other.m_value); } + [[nodiscard]] + strong_int operator/(strong_int const & other) const { return strong_int(m_value / other.m_value); } bool anyOf(strong_int v) const { return *this == v; |