Packages

object IntMap extends java.io.Serializable

A companion object for integer maps.

Source
IntMap.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IntMap
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply[T](elems: (Int, T)*): IntMap[T]
  2. implicit def buildFromIntMap[V]: BuildFrom[IntMap[_], (Int, V), IntMap[V]]
  3. def empty[T]: IntMap[T]
  4. def from[V](coll: IterableOnce[(Int, V)]): IntMap[V]
  5. implicit def iterableFactory[V]: Factory[(Int, V), IntMap[V]]
  6. def newBuilder[V]: Builder[(Int, V), IntMap[V]]
  7. def singleton[T](key: Int, value: T): IntMap[T]
  8. implicit def toBuildFrom[V](factory: IntMap.type): BuildFrom[Any, (Int, V), IntMap[V]]
  9. implicit def toFactory[V](dummy: IntMap.type): Factory[(Int, V), IntMap[V]]