operator [] method
- K key
Returns the value associated with the key, or null if it doesn't exist. Time complexity: O(log N).
Implementation
V? operator [](K key) => _container[key];
Returns the value associated with the key, or null if it doesn't exist. Time complexity: O(log N).
V? operator [](K key) => _container[key];