final case class KMap[K[_], V[_]](map: Map[K[Any], V[Any]]) extends AnyVal with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. KMap
  2. Serializable
  3. Product
  4. Equals
  5. AnyVal
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new KMap(map: Map[K[Any], V[Any]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. def ++(that: KMap[K, V]): KMap[K, V]
  4. def -[A](k: K[A]): KMap[K, V]
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. def apply[A](k: K[A]): V[A]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def find(p: (Exists[V]) => Boolean): Option[APair[K, V]]
  9. def get[A](k: K[A]): Option[V[A]]
  10. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  11. def getOrElse[A](k: K[A])(default: => V[A]): V[A]
  12. def head: APair[K, V]
  13. def isEmpty: Boolean
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def iterator: Iterator[APair[K, V]]
  16. val map: Map[K[Any], V[Any]]
  17. def mapValues[W[_]](f: ~>[V, W]): KMap[K, W]
  18. def nonEmpty: Boolean
  19. def productElementNames: Iterator[String]
    Definition Classes
    Product
  20. def put[A](k: K[A])(v: V[A]): KMap[K, V]
  21. def size: Int
  22. def tail: KMap[K, V]
  23. def updated[A](k: K[A])(v: V[A])(combineIfPresent: (V[A], V[A]) => V[A]): KMap[K, V]

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyVal

Inherited from Any

Ungrouped