Packages

object TreeMap extends SortedMapFactory[TreeMap]

This object provides a set of operations to create mutable.TreeMap values.

Annotations
@SerialVersionUID()
Source
TreeMap.scala
Linear Supertypes
SortedMapFactory[TreeMap], java.io.Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TreeMap
  2. SortedMapFactory
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply[K, V](elems: (K, V)*)(implicit arg0: Ordering[K]): TreeMap[K, V]
    Definition Classes
    SortedMapFactory
  2. def empty[K, V](implicit arg0: Ordering[K]): TreeMap[K, V]
    Definition Classes
    TreeMapSortedMapFactory
  3. def from[K, V](it: IterableOnce[(K, V)])(implicit arg0: Ordering[K]): TreeMap[K, V]
    Definition Classes
    TreeMapSortedMapFactory
  4. def newBuilder[K, V](implicit arg0: Ordering[K]): Builder[(K, V), TreeMap[K, V]]
    Definition Classes
    TreeMapSortedMapFactory
  5. implicit def sortedMapFactory[K, V](implicit arg0: Ordering[K]): Factory[(K, V), TreeMap[K, V]]
    Definition Classes
    SortedMapFactory