frp_signal/lib.rs
1//! Pull-based reactive primitives for the infinite-db frp backend.
2//!
3//! Provides `Signal<T>` (writable reactive cells), `Computed<T>` (lazily
4//! re-evaluated derived values), `Slot<T>` (named single-value input
5//! receivers), and `DirtySet` (shared dirty-ID tracking).
6
7pub mod computed;
8pub mod dirty;
9pub mod signal;
10pub mod slot;
11
12pub use computed::{Computed, DirtySink, SignalSubscribable};
13pub use dirty::DirtySet;
14pub use signal::Signal;
15pub use slot::Slot;