ListMap.remove

Remove value by key.

  1. void remove(Node* toRemove)
  2. bool remove(K key)
    struct ListMap(K, V, size_t chunkSize = 32)
    bool
    remove
    (
    K key
    )

Return Value

Type: bool

true if node with such key was found and removed. False otherwise.

Meta