diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-05-08 17:53:10 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-08-18 23:25:46 +0200 |
commit | c6c1b5217a48b60018bbd468b57cbcac600ec0ed (patch) | |
tree | c6ac9406b3a96e7bcc463b46b264e3a1e94c422d /include | |
parent | 31295f7da843f8e32f1dbdb7c3b552bb7e2f12b2 (diff) |
Add more comparison functions to hash
Diffstat (limited to 'include')
-rw-r--r-- | include/odhtdb/Hash.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/odhtdb/Hash.hpp b/include/odhtdb/Hash.hpp index c1212ec..05e85d2 100644 --- a/include/odhtdb/Hash.hpp +++ b/include/odhtdb/Hash.hpp @@ -38,6 +38,9 @@ namespace odhtdb size_t operator()() const; bool operator==(const Hash &other) const; + bool operator!=(const Hash &other) const; + + bool isEmpty() const; std::string toString() const; private: |