K3Map

final case class K3Map[K[_, _, _], V[_, _, _]](map: Map[K[Nothing, Nothing, Nothing], V[Nothing, 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, C](k: K[A, B, C]): K3Map[K, V]
def apply[A, B, C](k: K[A, B, C]): V[A, B, C]
def get[A, B, C](k: K[A, B, C]): Option[V[A, B, C]]
def getOrElse[A, B, C](k: K[A, B, C])(default: => V[A, B, C]): V[A, B, C]
def isEmpty: Boolean
def nonEmpty: Boolean
def put[A, B, C](k: K[A, B, C])(v: V[A, B, C]): K3Map[K, V]
def size: Int
def tail: K3Map[K, V]
def updated[A, B, C](k: K[A, B, C])(v: V[A, B, C])(combineIfPresent: (V[A, B, C], V[A, B, C]) => V[A, B, C]): K3Map[K, V]

Inherited methods

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