KMap

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

Value members

Concrete methods

def ++(that: KMap[K, V]): KMap[K, V]
def -[A](k: K[A]): KMap[K, V]
def apply[A](k: K[A]): V[A]
def find(p: Exists[V] => Boolean): Option[APair[K, V]]
def get[A](k: K[A]): Option[V[A]]
def getOrElse[A](k: K[A])(default: => V[A]): V[A]
def head: APair[K, V]
def isEmpty: Boolean
def iterator: Iterator[APair[K, V]]
def mapValues[W[_]](f: NaturalTransformation[V, W]): KMap[K, W]
def nonEmpty: Boolean
def put[A](k: K[A])(v: V[A]): KMap[K, V]
def size: Int
def tail: KMap[K, V]
def updated[A](k: K[A])(v: V[A])(combineIfPresent: (V[A], V[A]) => V[A]): KMap[K, V]

Inherited methods

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