CombinedMapView<K, V> constructor

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

Create a new combined view into 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);