containsKey method

bool containsKey(
  1. K key
)

Returns true if the map contains the specified key. Time complexity: O(log N).

Implementation

bool containsKey(K key) {
  return _container.containsKey(key);
}