SSOOpenHashSet

Small-set-optimized OpenHashSet.

TODO search for nullify, isNull, nullValue and support deleted keys (isDull)

TODO use opMove to update gc_addRange and gc_removeRange when implemented. See: https://github.com/dlang/DIPs/pull/109

struct SSOOpenHashSet (
K
alias hasher = hashOf
) if (
isNullable!K
) {}

Destructor

A destructor is present on this object, but not explicitly documented in the source.

Postblit

A postblit is present on this object, but not explicitly documented in the source.

Members

Functions

binCount
size_t binCount()

Get bin count.

contains
bool contains(K key)

Check if element is stored.

See Also

Meta