flat method

ComputedMap<(K1, K2), V> flat()

Returns a flattened version of this nested map as a ComputedMap.

The keys are records containing keys from both the outer and the corresponding inner maps. Similar to Iterable.expand.

Implementation

ComputedMap<(K1, K2), V> flat() => FlatComputedMap(this);