diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-14 18:53:37 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-14 18:53:37 +0100 |
commit | 4630cb5237aea7749ac9938c738146c798e305cb (patch) | |
tree | 38ba9e41c3bf8408df97b7548ef112e2af61cd13 /asl/containers/hash_map.hpp | |
parent | dce2c187ec96aedcfa703ffec9c4c91f0a49ca69 (diff) |
Add missing is_empty methods
Diffstat (limited to 'asl/containers/hash_map.hpp')
-rw-r--r-- | asl/containers/hash_map.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/asl/containers/hash_map.hpp b/asl/containers/hash_map.hpp index cf2f0b2..8c201a9 100644 --- a/asl/containers/hash_map.hpp +++ b/asl/containers/hash_map.hpp @@ -96,6 +96,8 @@ public: using Base::size; + using Base::is_empty; + using Base::remove; using Base::contains; |