template<typename K, typename V, typename HashOp = Hash<K>>
HashMap class
Template parameters | |
---|---|
K | the key type |
V | the value type |
HashOp | the hash operator |
Contents
Hash table using open-hashing algorithm
Public types
- struct Entry
- enum EntryState { ENTRY_STATE_INSTANCE_DELETE, ENTRY_STATE_NON_EXISTANT, ENTRY_STATE_OCCUPIED }
- using Iterator = HashMapIterator<HashMap<K, V, HashOp>, Entry, Node>
- using CIterator = HashMapConstIterator<HashMap<K, V, HashOp>, Entry, Node>
- using ReverseIterator = HashMapReverseIterator<HashMap<K, V, HashOp>, Entry, Node>
- using CReverseIterator = HashMapConstReverseIterator<HashMap<K, V, HashOp>, Entry, Node>
Constructors, destructors, conversion operators
Public functions
- void Add(const K& key, const V& value)
- void Add(const K& key, V&& value)
- void RemoveAt(const K& key)
- void RemoveAt(Iterator& pos)
- void RemoveAt(Iterator&& pos)
- void Swap(const Iterator& a, const Iterator& b)
- void Clear()
-
template<template<typename> class Comparator = ops::void Remove(const V& value, bool all = true)
Equal> - auto operator==(const HashMap<K, V, HashOp>& other) const -> bool noexcept
- auto operator!=(const HashMap<K, V, HashOp>& other) const -> bool noexcept
- auto FindByKey(const K& key) -> Iterator
-
template<template<typename> class Comparator = ops::auto FindByValue(const V& val) -> Iterator
Equal> - auto Find(const std::function<bool(Iterator it)>& comparator) -> Iterator
- auto operator[](const K& key) const -> const V&
- auto operator[](const K& key) -> V&
- auto operator=(const HashMap& other) -> HashMap&
- auto operator=(HashMap&& other) -> HashMap& noexcept
- auto operator+(const HashMap& other) const -> HashMap
- void operator+=(const HashMap& other)
- auto HasKey(const K& key) const -> bool
- auto Size() const -> fsize
- auto begin() const -> CIterator
- auto end() const -> CIterator
- auto begin() -> Iterator
- auto end() -> Iterator
- auto rbegin() const -> CReverseIterator
- auto rend() const -> CReverseIterator
- auto rbegin() -> ReverseIterator
- auto rend() -> ReverseIterator
Function documentation
template<typename K, typename V, typename HashOp>
void bpf:: collection:: HashMap<K, V, HashOp>:: Add(const K& key,
const V& value)
Parameters | |
---|---|
key | the key of the element |
value | the value to insert |
Adds a new element in this hash map, replaces if key already exists
template<typename K, typename V, typename HashOp>
void bpf:: collection:: HashMap<K, V, HashOp>:: Add(const K& key,
V&& value)
Parameters | |
---|---|
key | the key of the element |
value | the value to insert |
Adds a new element in this hash map, replaces if key already exists
template<typename K, typename V, typename HashOp>
void bpf:: collection:: HashMap<K, V, HashOp>:: RemoveAt(const K& key)
Parameters | |
---|---|
key | the key of the element to remove |
Removes an element from the hash table
template<typename K, typename V, typename HashOp>
template<template<typename> class Comparator = ops:: Equal>
void bpf:: collection:: HashMap<K, V, HashOp>:: Remove(const V& value,
bool all = true)
Template parameters | |
---|---|
Comparator | the comparision operator to use for comparing values |
Parameters | |
value | the value to search for |
all | wether to remove all occurances or just the first one |
Removes an element by value
template<typename K, typename V, typename HashOp>
bool bpf:: collection:: HashMap<K, V, HashOp>:: operator==(const HashMap<K, V, HashOp>& other) const noexcept
Parameters | |
---|---|
other | HashMap to compare with |
Returns | true if the two maps are equal, false otherwise |
Compare HashMap by performing a per-element check
template<typename K, typename V, typename HashOp>
bool bpf:: collection:: HashMap<K, V, HashOp>:: operator!=(const HashMap<K, V, HashOp>& other) const noexcept
Parameters | |
---|---|
other | HashMap to compare with |
Returns | false if the two maps are equal, true otherwise |
Compare HashMap by performing a per-element check
template<typename K, typename V, typename HashOp>
template<template<typename> class Comparator = ops:: Equal>
Iterator bpf:: collection:: HashMap<K, V, HashOp>:: FindByValue(const V& val)
Template parameters | |
---|---|
Comparator | comparision operator to use |
Parameters | |
val | the value to search for |
Returns | iterator to the found item or end() if none |
Locate an item by performing per-element check
template<typename K, typename V, typename HashOp>
Iterator bpf:: collection:: HashMap<K, V, HashOp>:: Find(const std::function<bool(Iterator it)>& comparator)
Parameters | |
---|---|
comparator | the comparision function to use |
Returns | iterator to the found item or end() if none |
Locate an item by performing per-element check
template<typename K, typename V, typename HashOp>
const V& bpf:: collection:: HashMap<K, V, HashOp>:: operator[](const K& key) const
Parameters | |
---|---|
key | the key of the element |
Returns | immutable item |
Exceptions | |
IndexException | if key is not in this map |
Returns an element const mode
template<typename K, typename V, typename HashOp>
V& bpf:: collection:: HashMap<K, V, HashOp>:: operator[](const K& key)
Parameters | |
---|---|
key | the key of the element |
Returns | mutable item |
Exceptions | |
IndexException | if key is not in this map and cannot be created |
Returns an element non-const mode
template<typename K, typename V, typename HashOp>
void bpf:: collection:: HashMap<K, V, HashOp>:: operator+=(const HashMap& other)
Parameters | |
---|---|
other | map to append |
Appends the content of a HashMap at the end of this map
template<typename K, typename V, typename HashOp>
bool bpf:: collection:: HashMap<K, V, HashOp>:: HasKey(const K& key) const
Parameters | |
---|---|
key | the key to check |
Returns | true if the specified key exists, false otherwise |
Check if a particular key exists
template<typename K, typename V, typename HashOp>
CReverseIterator bpf:: collection:: HashMap<K, V, HashOp>:: rbegin() const
Returns | new iterator |
---|
Returns a reverse iterator to the begining of the collection
template<typename K, typename V, typename HashOp>
CReverseIterator bpf:: collection:: HashMap<K, V, HashOp>:: rend() const
Returns | new iterator |
---|
Returns a reverse iterator to the end of the collection
template<typename K, typename V, typename HashOp>
ReverseIterator bpf:: collection:: HashMap<K, V, HashOp>:: rbegin()
Returns | new iterator |
---|
Returns a reverse iterator to the begining of the collection
template<typename K, typename V, typename HashOp>
ReverseIterator bpf:: collection:: HashMap<K, V, HashOp>:: rend()
Returns | new iterator |
---|
Returns a reverse iterator to the end of the collection