containsKey method

bool containsKey (Object key)

Implementation

bool containsKey(Object key) {
  return _validKey(key) && _splay(key) == 0;
}