operator [] method

ISet<V>? operator [](
  1. K key
)

Return the set for the given key. If the key doesn't exist, return null.

Implementation

ISet<V>? operator [](K key) => _mapOfSets[key];