equalRange method
- K key
Returns an iterable of all values associated with the key. Time complexity: O(log N).
Implementation
Iterable<V> equalRange(K key) {
return _container[key] ?? const [];
}
Returns an iterable of all values associated with the key. Time complexity: O(log N).
Iterable<V> equalRange(K key) {
return _container[key] ?? const [];
}