OpenHashMap.containsWithHoleMoving

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

struct OpenHashMap(K, V = void, alias hasher = hashOf, string keyEqualPred = defaultKeyEqualPredOf!(K), alias Allocator = Mallocator.instance, bool borrowChecked = false, bool useSmallLinearSearch = true, bool usePrimeCapacity = false)
bool
containsWithHoleMoving
()
(
const scope K key
)

Return Value

Type: bool

true if element is present, false otherwise.

Meta