contains method

bool contains(
  1. TKey key
)

Whether key is currently registered.

Implementation

bool contains(TKey key) {
  return _keyToNid.containsKey(key);
}