object SortedMapFactory
- Companion
- class
Type members
Classlikes
Implicits
Implicits
implicit def toBuildFrom[K, V, CC[_, _]](factory: SortedMapFactory[CC])(`evidence$43`: Ordering[K]): BuildFrom[Any, (K, V), CC[K, V]]
implicit def toFactory[K, V, CC[_, _]](factory: SortedMapFactory[CC])(`evidence$41`: Ordering[K]): Factory[(K, V), CC[K, V]]
Implicit conversion that fixes the key and value types of factory to K and V,
respectively.
Implicit conversion that fixes the key and value types of factory to K and V,
respectively.
- Type Params
- CC
- Collection type constructor of the factory (e.g. - TreeMap)
- K
- Type of keys 
- V
- Type of values 
 
- Value Params
- factory
- The factory to fix the key and value types 
 
- Returns
- A Factory that uses the given - factoryto build a map with keys of type- Kand values of type- V