equalRange method

Iterable<V> equalRange(
  1. 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 [];
}