This object provides a set of operations to createIterable values.
Note that each element insertion takes O(n) time, which means that creating a list map with n elements will take O(n2) time. This makes the builder suitable only for a small number of elements.
"Scala's Collection Library overview" section onList Maps for more information.
An empty Map
A collection of type Map generated from given iterable object.
Returns a new ListMap builder
Returns a new ListMap builder
The implementation safely handles additions afterresult() without callingclear()
the map key type
the map value type
A collection of type Map that contains given key/value bindings.
A collection of type Map that contains given key/value bindings.
The default Factory instance for maps.