HybridHashMap.containsWithHoleMoving

Check if element is stored. Move found element to a hole if possible.

struct HybridHashMap(K, V = void, alias hasher = hashOf, string keyEqualPred = defaultKeyEqualPredOf!(K), Allocator = Mallocator, Options options = Options.init)
bool
containsWithHoleMoving
()
(
in K key
)
if (
isAllocator!Allocator
)

Return Value

Type: bool

true if element is present, false otherwise.

Meta