LinkedHashMap.remove

remove(key) does nothing if the given key does not exist and returns false. If the given key does exist, it removes it from the HashMap and returns true.

struct LinkedHashMap(Key, Value)
pure nothrow @trusted
bool
remove
(
Key key
)

Meta