HHKMap

final case class HHKMap[K[_[_[_]]], V[_[_[_]]]](map: Map[K[Nothing], V[Nothing]]) extends AnyVal
Companion:
object
trait Serializable
trait Product
trait Equals
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def -[F[_[_]]](k: K[F]): HHKMap[K, V]
def apply[A[_[_]]](k: K[A]): V[A]
def get[A[_[_]]](k: K[A]): Option[V[A]]
def getOrElse[A[_[_]]](k: K[A])(default: => V[A]): V[A]
def isEmpty: Boolean
def nonEmpty: Boolean
def put[A[_[_]]](k: K[A])(v: V[A]): HHKMap[K, V]
def size: Int
def tail: HHKMap[K, V]
def updated[A[_[_]]](k: K[A])(v: V[A])(combineIfPresent: (V[A], V[A]) => V[A]): HHKMap[K, V]

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product