HashMap.remove

Removes the value associated with the given key

struct HashMap(K, V, Allocator = Mallocator, alias hashFunction = generateHash!K, bool supportGC = shouldAddGCRange!K || shouldAddGCRange!V)
bool
remove
(
K key
)

Return Value

Type: bool

true if a value was actually removed.

Meta