reactivity phase 2: cell/thunk

This commit is contained in:
2026-03-19 20:23:54 -04:00
parent 9594c38714
commit 9143a79a64
6 changed files with 421 additions and 5 deletions

View File

@@ -4,8 +4,12 @@
//! single-threaded and designed to live on a runtime-managed thread, while async work feeds it
//! from the edges by updating state or emitting events.
mod cell;
mod id;
mod reactor;
mod thunk;
pub use cell::{Cell, cell, cell_in};
pub use id::NodeId;
pub use reactor::{ReactCycleError, Reactor, current};
pub use thunk::{Thunk, thunk, thunk_in};