[ox/std] Add move operators to HashMap and cleanup noexcept correctness
This commit is contained in:
parent
394d13df9b
commit
39dc09e3d3
42
deps/ox/src/ox/std/hashmap.hpp
vendored
42
deps/ox/src/ox/std/hashmap.hpp
vendored
@ -30,13 +30,17 @@ class HashMap {
|
|||||||
public:
|
public:
|
||||||
explicit HashMap(std::size_t size = 100);
|
explicit HashMap(std::size_t size = 100);
|
||||||
|
|
||||||
HashMap(HashMap &other);
|
HashMap(const HashMap &other);
|
||||||
|
|
||||||
|
HashMap(HashMap &&other);
|
||||||
|
|
||||||
~HashMap();
|
~HashMap();
|
||||||
|
|
||||||
bool operator==(const HashMap &other) const;
|
bool operator==(const HashMap &other) const;
|
||||||
|
|
||||||
HashMap &operator=(HashMap &other);
|
HashMap &operator=(const HashMap &other);
|
||||||
|
|
||||||
|
HashMap &operator=(HashMap &&other);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* K is assumed to be a null terminated string.
|
* K is assumed to be a null terminated string.
|
||||||
@ -46,14 +50,14 @@ class HashMap {
|
|||||||
/**
|
/**
|
||||||
* K is assumed to be a null terminated string.
|
* K is assumed to be a null terminated string.
|
||||||
*/
|
*/
|
||||||
Result<T&> at(K key);
|
Result<T&> at(K key) noexcept;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* K is assumed to be a null terminated string.
|
* K is assumed to be a null terminated string.
|
||||||
*/
|
*/
|
||||||
Result<const T&> at(K key) const;
|
Result<const T&> at(K key) const noexcept;
|
||||||
|
|
||||||
bool contains(K key) const;
|
bool contains(K key) const noexcept;
|
||||||
|
|
||||||
std::size_t size() const noexcept;
|
std::size_t size() const noexcept;
|
||||||
|
|
||||||
@ -84,10 +88,18 @@ HashMap<K, T>::HashMap(std::size_t size): m_pairs(size) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename K, typename T>
|
template<typename K, typename T>
|
||||||
HashMap<K, T>::HashMap(HashMap<K, T> &other) {
|
HashMap<K, T>::HashMap(const HashMap<K, T> &other) {
|
||||||
m_pairs = other.m_pairs;
|
m_pairs = other.m_pairs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<typename K, typename T>
|
||||||
|
HashMap<K, T>::HashMap(HashMap<K, T> &&other) {
|
||||||
|
m_keys = ox::move(other.m_keys);
|
||||||
|
m_pairs = ox::move(other.m_pairs);
|
||||||
|
other.m_keys = {};
|
||||||
|
other.m_pairs = {};
|
||||||
|
}
|
||||||
|
|
||||||
template<typename K, typename T>
|
template<typename K, typename T>
|
||||||
HashMap<K, T>::~HashMap() {
|
HashMap<K, T>::~HashMap() {
|
||||||
for (std::size_t i = 0; i < m_pairs.size(); i++) {
|
for (std::size_t i = 0; i < m_pairs.size(); i++) {
|
||||||
@ -110,13 +122,23 @@ bool HashMap<K, T>::operator==(const HashMap &other) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename K, typename T>
|
template<typename K, typename T>
|
||||||
HashMap<K, T> &HashMap<K, T>::operator=(HashMap<K, T> &other) {
|
HashMap<K, T> &HashMap<K, T>::operator=(const HashMap<K, T> &other) {
|
||||||
this->~HashMap<K, T>();
|
this->~HashMap<K, T>();
|
||||||
m_keys = other.m_keys;
|
m_keys = other.m_keys;
|
||||||
m_pairs = other.m_pairs;
|
m_pairs = other.m_pairs;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<typename K, typename T>
|
||||||
|
HashMap<K, T> &HashMap<K, T>::operator=(HashMap<K, T> &&other) {
|
||||||
|
this->~HashMap<K, T>();
|
||||||
|
m_keys = ox::move(other.m_keys);
|
||||||
|
m_pairs = ox::move(other.m_pairs);
|
||||||
|
other.m_keys = {};
|
||||||
|
other.m_pairs = {};
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
template<typename K, typename T>
|
template<typename K, typename T>
|
||||||
T &HashMap<K, T>::operator[](K k) {
|
T &HashMap<K, T>::operator[](K k) {
|
||||||
auto &p = access(m_pairs, k);
|
auto &p = access(m_pairs, k);
|
||||||
@ -132,7 +154,7 @@ T &HashMap<K, T>::operator[](K k) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename K, typename T>
|
template<typename K, typename T>
|
||||||
Result<T&> HashMap<K, T>::at(K k) {
|
Result<T&> HashMap<K, T>::at(K k) noexcept {
|
||||||
auto p = access(m_pairs, k);
|
auto p = access(m_pairs, k);
|
||||||
if (!p) {
|
if (!p) {
|
||||||
AllocAlias<T> v;
|
AllocAlias<T> v;
|
||||||
@ -142,7 +164,7 @@ Result<T&> HashMap<K, T>::at(K k) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename K, typename T>
|
template<typename K, typename T>
|
||||||
Result<const T&> HashMap<K, T>::at(K k) const {
|
Result<const T&> HashMap<K, T>::at(K k) const noexcept {
|
||||||
auto p = access(m_pairs, k);
|
auto p = access(m_pairs, k);
|
||||||
if (!p) {
|
if (!p) {
|
||||||
AllocAlias<T> v;
|
AllocAlias<T> v;
|
||||||
@ -152,7 +174,7 @@ Result<const T&> HashMap<K, T>::at(K k) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename K, typename T>
|
template<typename K, typename T>
|
||||||
bool HashMap<K, T>::contains(K k) const {
|
bool HashMap<K, T>::contains(K k) const noexcept {
|
||||||
return access(m_pairs, k) != nullptr;
|
return access(m_pairs, k) != nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user