Map

dev.tauri.choam.data.Map
See theMap companion object
sealed trait Map[K, V]

Attributes

Companion
object
Source
Map.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
trait Extra[K, V]
Self type
Map[K, V]

Members list

Value members

Abstract methods

def del: Rxn[K, Boolean]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Source
Map.scala

Concrete methods

def toCats[F[_]](default: V)(implicit F: Reactive[F]): MapRef[F, K, V]

Attributes

Source
Map.scala