inverse property

  1. @override
BiMap<V, K> inverse
override

Returns the inverse of this map, with key-value pairs (v, k) for each pair (k, v) in this map.

Implementation

@override
BiMap<V, K> get inverse => _cached ??= HashBiMap._from(_inverse, _map);