33 template<
class Key,
class Hash>
45 template<
class Key,
class Hash>
46 template<
class AnyType,
class AnyHash>
69 template<
class Key,
class Hash>
75 if (this->
insert(lst[elemI]))
87 template<
class Key,
class Hash>
90 return this->
found(key);
94 template<
class Key,
class Hash>
98 for (
const_iterator iter = this->cbegin(); iter != this->cend(); ++iter)
100 if (!rhs.
found(iter.key()))
109 if (!this->
found(iter.key()))
119 template<
class Key,
class Hash>
126 template<
class Key,
class Hash>
137 template<
class Key,
class Hash>
141 for (
iterator iter = this->begin(); iter != this->end(); ++iter)
143 if (!rhs.
found(iter.key()))
151 template<
class Key,
class Hash>
157 if (this->
found(iter.key()))
159 this->
erase(iter.key());
169 template<
class Key,
class Hash>
175 this->
erase(iter.key());
182 template<
class Key,
class Hash>
196 template<
class Key,
class Hash>
210 template<
class Key,
class Hash>
A HashTable with keys but without contents.
#define forAll(list, i)
Loop across all elements in list.
HashTable< nil, label, Hash< label > >::const_iterator const_iterator
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
HashTable< nil, label, Hash< label > >::iterator iterator
An STL-conforming const_iterator.
bool insert(const Key &key)
Insert a new entry.
label size() const
Return number of elements in table.
void operator-=(const HashSet< Key, Hash > &)
Remove entries listed in the given HashSet from this HashSet.
void operator &=(const HashSet< Key, Hash > &)
Only retain entries found in both HashSets.
HashSet(const label size=128)
Construct given initial size.
bool found(const Key &) const
Return true if hashedEntry is found in table.
tmp< fvMatrix< Type > > operator==(const fvMatrix< Type > &, const fvMatrix< Type > &)
timeIndices insert(timeIndex, timeDirs[timeI].value())
bool operator!=(const HashSet< Key, Hash > &) const
The opposite of the equality operation.
An STL-conforming hash table.
A 1D vector of objects of type <T>, where the size of the vector is known and can be used for subscri...
void operator|=(const HashSet< Key, Hash > &)
Combine entries from HashSets.
bool operator[](const Key &) const
Return true if the entry exists, same as found()
bool operator==(const HashSet< Key, Hash > &) const
Equality. Two hashtables are equal when their contents are equal.
Hash function class for primitives. All non-primitives used to hash entries on hash tables likely nee...
void operator^=(const HashSet< Key, Hash > &)
Only retain unique entries (xor)
const_iterator cbegin() const
const_iterator set to the beginning of the HashTable
static iteratorEnd cend()
iteratorEnd set to beyond the end of any HashTable
A zero-sized class without any storage. Used, for example, in HashSet.