CombinedMapView<K, V> constructor

CombinedMapView<K, V>(
  1. Iterable<Map<K, V>> _maps
)

Create a new combined view of multiple maps.

The iterable is accessed lazily so it should be collection type like List or Set rather than a lazy iterable produced by map() et al.

Implementation

CombinedMapView(this._maps);