inverse property
override
Returns the inverse of this map, with key-value pairs (v, k) for each pair (k, v) in this map.
Implementation
BiMap<V, K> get inverse => _cached ??= new HashBiMap._from(_inverse, _map);
Returns the inverse of this map, with key-value pairs (v, k) for each pair (k, v) in this map.
BiMap<V, K> get inverse => _cached ??= new HashBiMap._from(_inverse, _map);