HKMap

final case class HKMap[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]): HKMap[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 head: APairK[K, V]
def isEmpty: Boolean
def nonEmpty: Boolean
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]

Inherited methods

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