containsKey method
- K key
Returns true if the map contains the exact key. Time complexity: O(log N).
Implementation
bool containsKey(K key) {
return _container.containsKey(key);
}
Returns true if the map contains the exact key. Time complexity: O(log N).
bool containsKey(K key) {
return _container.containsKey(key);
}