join<V2> abstract method
Returns the inner join of this with other
as a ComputedMap.
The returned map only has the keys which exist on both this map and other
.
The values are records containing the corresponding values from both maps.
Implementation
ComputedMap<K, (V, V2)> join<V2>(ComputedMap<K, V2> other);