AtomStore

An interface for storing and retrieving atoms.

Inheritors

Functions

Link copied to clipboard
abstract fun <T> get(atom: Atom<T>): T

Retrieves the value associated with the specified Atom reference key.

open override fun <T> get(atom: AtomRef<T>): T

Retrieves the value associated with the specified AtomRef reference key.

Link copied to clipboard
abstract fun <T> set(atom: Atom<T>, value: T)

Set the value of an atom.