summaryrefslogtreecommitdiff
path: root/include/fud_hash_map_impl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/fud_hash_map_impl.hpp')
-rw-r--r--include/fud_hash_map_impl.hpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/fud_hash_map_impl.hpp b/include/fud_hash_map_impl.hpp
index 6e224f9..23f5653 100644
--- a/include/fud_hash_map_impl.hpp
+++ b/include/fud_hash_map_impl.hpp
@@ -151,7 +151,13 @@ struct MapEntry {
return *std::bit_cast<Value*>(m_valueData.data());
}
- [[nodiscard]] Value&& takeValue() &
+ [[nodiscard]] constexpr Key&& takeKey() &
+ {
+ fudAssert(hasValue());
+ return std::move(*std::bit_cast<Key*>(m_keyData.data()));
+ }
+
+ [[nodiscard]] constexpr Value&& takeValue() &
{
fudAssert(hasValue());
return std::move(*std::bit_cast<Value*>(m_valueData.data()));