final case class HKMap[K[_[_]], V[_[_]]](map: Map[K[Any], V[Any]]) extends AnyVal with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HKMap
- Serializable
- Product
- Equals
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new HKMap(map: Map[K[Any], V[Any]])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- def -(k: K[Any]): HKMap[K, V]
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- def apply[A[_]](k: K[A]): V[A]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def get[A[_]](k: K[A]): Option[V[A]]
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def getOrElse[A[_]](k: K[A])(default: => V[A]): V[A]
- def head: (K[A], V[A]) forSome {type A[_]}
- def isEmpty: Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val map: Map[K[Any], V[Any]]
- def nonEmpty: Boolean
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def put[A[_]](k: K[A])(v: V[A]): HKMap[K, V]
- def size: Int
- def tail: HKMap[K, V]
- def updated[A[_]](k: K[A])(v: V[A])(combineIfPresent: (V[A], V[A]) => V[A]): HKMap[K, V]