FlatHashMap.containsWithHoleMoving

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

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

Return Value

Type: bool

true if element is present, false otherwise.

Meta