Extra

dev.tauri.choam.data.Map.Extra
sealed trait Extra[K, V] extends Map[K, V]

Attributes

Source
Map.scala
Graph
Supertypes
trait Map[K, V]
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def clear: Axn[Unit]

Attributes

Source
Map.scala
def values(implicit V: Order[V]): Axn[Vector[V]]

Attributes

Source
Map.scala

Inherited methods

def del: Rxn[K, Boolean]

Attributes

Inherited from:
Map
Source
Map.scala
def get: Rxn[K, Option[V]]

Attributes

Inherited from:
Map
Source
Map.scala
def put: Rxn[(K, V), Option[V]]

Attributes

Inherited from:
Map
Source
Map.scala
def putIfAbsent: Rxn[(K, V), Option[V]]

Attributes

Inherited from:
Map
Source
Map.scala
def refLike(key: K, default: V): RefLike[V]

Attributes

Inherited from:
Map
Source
Map.scala
def remove: Rxn[(K, V), Boolean]

Attributes

Inherited from:
Map
Source
Map.scala
def replace: Rxn[(K, V, V), Boolean]

Attributes

Inherited from:
Map
Source
Map.scala
def toCats[F[_]](default: V)(implicit F: Reactive[F]): MapRef[F, K, V]

Attributes

Inherited from:
Map
Source
Map.scala