fn swapRemove(self: *Self, key: K) bool

If there is an Entry with a matching key, it is deleted from the hash map. The entry is removed from the underlying array by swapping it with the last element. Returns true if an entry was removed, false otherwise.

Parameters

self: *Self,
key: K,