scalaz

InsertionMap

sealed trait InsertionMap[K, V] extends AnyRef

Returns a list in order of key insertion.

Source
InsertionMap.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. InsertionMap
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def @-(k: K): (Option[V], InsertionMap[K, V])

  5. def ^+^(k: K, v: V): InsertionMap[K, V]

  6. def ^-^(k: K): InsertionMap[K, V]

  7. def apply(k: K): Option[V]

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def contains(k: K): Boolean

  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(a: Any): Boolean

    Definition Classes
    InsertionMap → AnyRef → Any
  13. def exists(p: (K, V) ⇒ Boolean): Boolean

  14. def filter(p: (V) ⇒ Boolean): InsertionMap[K, V]

  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def forall(p: (K, V) ⇒ Boolean): Boolean

  17. def get(k: K): Option[V]

  18. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  19. def getOr(k: K, v: ⇒ V): V

  20. def hashCode(): Int

    Definition Classes
    InsertionMap → AnyRef → Any
  21. def isEmpty: Boolean

  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def keySet: Set[K]

  24. def keys: List[K]

    Returns a list with keys in the order of their insertion.

  25. def map[W](f: (V) ⇒ W): InsertionMap[K, W]

  26. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  29. def size: Int

  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toList: List[(K, V)]

    Returns a list with keys in the order of their insertion.

  32. def toMap: Map[K, V]

  33. def toString(): String

    Definition Classes
    InsertionMap → AnyRef → Any
  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped