LibCrypto: Add operator<= and operator>= to SignedBigInteger

This commit is contained in:
Idan Horowitz 2021-07-18 23:20:39 +03:00 committed by Linus Groh
commit ff6ca0f02d
Notes: sideshowbarker 2024-07-18 08:46:04 +09:00
2 changed files with 12 additions and 0 deletions

View file

@ -121,7 +121,9 @@ public:
bool operator==(const SignedBigInteger& other) const;
bool operator!=(const SignedBigInteger& other) const;
bool operator<(const SignedBigInteger& other) const;
bool operator<=(const SignedBigInteger& other) const;
bool operator>(const SignedBigInteger& other) const;
bool operator>=(const SignedBigInteger& other) const;
bool operator==(const UnsignedBigInteger& other) const;
bool operator!=(const UnsignedBigInteger& other) const;