AtomExtension<A> extension
- on
-
- Atom<
A>
- Atom<
Methods
-
filter(
bool predicate(A value)) → AtomWithParent< FutureValue< A> , Atom<A> > -
Available on Atom<
Create a derived atom, that filters the values using the given predicate.A> , provided by the AtomExtension extension -
select<
B> (B f(A value)) → AtomWithParent< B, Atom< A> > -
Available on Atom<
Create a derived atom, that transforms an atoms value using the given functionA> , provided by the AtomExtension extensionf
.