Implements Dictionary class, a wrapper for the unordered_map, with more safety.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
1
src/Collections/Dictionary.cpp
Normal file
1
src/Collections/Dictionary.cpp
Normal file
@@ -0,0 +1 @@
|
||||
#include "Dictionary.hpp"
|
||||
64
src/Collections/Dictionary.hpp
Normal file
64
src/Collections/Dictionary.hpp
Normal file
@@ -0,0 +1,64 @@
|
||||
#ifndef ARBUTILS_DICTIONARY_HPP
|
||||
#define ARBUTILS_DICTIONARY_HPP
|
||||
#include <unordered_map>
|
||||
|
||||
namespace Arbutils::Collections {
|
||||
template <class KeyT, class ValueT> class Dictionary {
|
||||
private:
|
||||
std::unordered_map<KeyT, ValueT> _map;
|
||||
|
||||
using iterator = typename std::unordered_map<KeyT, ValueT, std::hash<KeyT>, std::equal_to<KeyT>,
|
||||
std::allocator<std::pair<const KeyT, ValueT>>>::iterator;
|
||||
|
||||
public:
|
||||
explicit Dictionary(size_t capacity) : _map(capacity) {}
|
||||
|
||||
inline void Insert(KeyT key, ValueT value) {
|
||||
auto v = _map.insert({key, value});
|
||||
if (!v.second)
|
||||
throw std::logic_error("Key already exists");
|
||||
}
|
||||
|
||||
inline void Set(KeyT key, ValueT value) { _map[key] = value; }
|
||||
|
||||
[[nodiscard]] inline ValueT& Get(KeyT key) {
|
||||
auto find = _map.find(key);
|
||||
if (find == _map.end()) {
|
||||
throw std::logic_error("Key not found");
|
||||
}
|
||||
return find->second;
|
||||
}
|
||||
|
||||
[[nodiscard]] inline const ValueT& Get(KeyT key) const {
|
||||
auto find = _map.find(key);
|
||||
if (find == _map.end()) {
|
||||
throw std::logic_error("Key not found");
|
||||
}
|
||||
return find->second;
|
||||
}
|
||||
|
||||
inline bool TryGet(KeyT key, ValueT& out) const {
|
||||
auto find = _map.find(key);
|
||||
if (find == _map.end()) {
|
||||
return false;
|
||||
}
|
||||
out = find->second;
|
||||
return true;
|
||||
}
|
||||
|
||||
[[nodiscard]] inline size_t Count() const { return _map.size(); }
|
||||
|
||||
inline bool Has(KeyT key) const noexcept { return _map.find(key) != _map.end(); }
|
||||
|
||||
inline ValueT& operator[](KeyT key) { return Get(key); }
|
||||
inline const ValueT& operator[](KeyT key) const { return Get(key); }
|
||||
|
||||
iterator begin() { return _map.begin(); }
|
||||
iterator begin() const { return _map.begin(); }
|
||||
|
||||
iterator end() { return _map.end(); }
|
||||
iterator end() const { return _map.end(); }
|
||||
};
|
||||
}
|
||||
|
||||
#endif // ARBUTILS_DICTIONARY_HPP
|
||||
Reference in New Issue
Block a user