-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
ImmutableBuilder is currently being used as the default builder implementation for:
immutable.MultiDictimmutable.SortedMultiDictimmutable.MultiSetimmutable.SortedMultiSet
However, it should be possible, for the sake of performance, to build mutating versions of these, which would mostly be delegating to already-implemented mutating builders of Maps in the standard library (i.e. scala.collection.immutable.{MapBuilderImpl, HashMapBuilder})
julienrf
Activity