Open
Description
concurrent.Map[K, V]
does not extend mutable.MapOps[K, V, concurrent.Map, concurrent.Map[K, V]]
, and thus its methods return mutable.Map
or types based on the same. For example:
filter
returns amutable.Map
rather than aconcurrent.Map
mapFactory
returns aMapFactory[mutable.Map]
rather than aMapFactory[concurrent.Map]