4#include "../Containers/Vector.h"
5#include "../Foundation/StrongID.h"
9template <
typename Key,
typename Value,
typename Container>
11template <
typename Key,
typename Value>
20template <
typename Key,
typename Value>
33template <
typename Key,
typename Value,
typename Container = SC::Vector<SC::VectorMapItem<Key, Value>>>
41 [[nodiscard]]
auto size()
const {
return items.size(); }
44 [[nodiscard]]
auto isEmpty()
const {
return items.isEmpty(); }
46 [[nodiscard]] Item* begin() {
return items.begin(); }
47 [[nodiscard]]
const Item* begin()
const {
return items.begin(); }
48 [[nodiscard]] Item* end() {
return items.end(); }
49 [[nodiscard]]
const Item* end()
const {
return items.end(); }
54 template <
typename ComparableToKey>
55 [[nodiscard]]
bool remove(
const ComparableToKey& key)
58 for (
auto& item : items)
62 return items.removeAt(idx);
76 return items.push_back(forward<Item>(item));
86 for (
auto& it : items)
88 if (it.key == item.key)
90 it.value =
move(item.value);
94 if (items.push_back(forward<Item>(item)))
96 return &items.back().value;
107 if (items.push_back({Key::generateUniqueKey(*this), forward<Value>(value)}))
109 return &items.back().key;
115 template <
typename ComparableToKey>
116 [[nodiscard]]
bool contains(
const ComparableToKey& key)
const
118 for (
auto& item : items)
131 template <
typename ComparableToKey>
132 [[nodiscard]]
bool contains(
const ComparableToKey& key,
const Value*& outValue)
const
134 for (
auto& item : items)
138 outValue = &item.value;
148 template <
typename ComparableToKey>
149 [[nodiscard]]
bool contains(
const ComparableToKey& key, Value*& outValue)
151 for (
auto& item : items)
155 outValue = &item.value;
164 template <
typename ComparableToKey>
165 [[nodiscard]]
const Value*
get(
const ComparableToKey& key)
const
167 for (
auto& item : items)
179 template <
typename ComparableToKey>
180 [[nodiscard]] Value*
get(
const ComparableToKey& key)
182 for (
auto& item : items)
194 template <
typename ComparableToKey>
197 for (
auto& item : items)
204 if (items.push_back({key, Value()}))
206 return &items.back().value;
constexpr T && move(T &value)
Converts an lvalue to an rvalue reference.
Definition: Compiler.h:269
A map holding VectorMapItem key-value pairs in an unsorted Vector.
Definition: VectorMap.h:35
auto size() const
Return the number of key-value pairs in the map.
Definition: VectorMap.h:41
Key * insertValueUniqueKey(Value &&value)
Inserts a new value, automatically generating key with Key::generateUniqueKey (works for StrongID for...
Definition: VectorMap.h:105
auto isEmpty() const
Check if the map is empty.
Definition: VectorMap.h:44
bool contains(const ComparableToKey &key, Value *&outValue)
Check if the given key is contained in the map.
Definition: VectorMap.h:149
const Value * get(const ComparableToKey &key) const
Get the Value associated to the given key.
Definition: VectorMap.h:165
bool contains(const ComparableToKey &key) const
Check if the given key is contained in the map.
Definition: VectorMap.h:116
bool insertIfNotExists(Item &&item)
Inserts an item if it doesn't exist already.
Definition: VectorMap.h:72
Value * getOrCreate(const ComparableToKey &key)
Get the value associated to the given key, or creates a new one if needed.
Definition: VectorMap.h:195
Value * get(const ComparableToKey &key)
Get the Value associated to the given key.
Definition: VectorMap.h:180
bool remove(const ComparableToKey &key)
Remove an item with matching key from the Map.
Definition: VectorMap.h:55
Value * insertOverwrite(Item &&item)
Insert an item, overwriting the potentially already existing one.
Definition: VectorMap.h:84
bool contains(const ComparableToKey &key, const Value *&outValue) const
Check if the given key is contained in the map.
Definition: VectorMap.h:132
The single item of VectorMap, holding a Key and Value.
Definition: VectorMap.h:22
Key key
Key item value.
Definition: VectorMap.h:23
Value value
Map item value.
Definition: VectorMap.h:24