K2Map

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

Value members

Concrete methods

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

Inherited methods

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