whisker-runtime 0.4.1

Core runtime for Whisker: reactive primitives, element tree, Lynx integration.
Documentation
//! (Removed in the wrapper-less control-flow refactor.)
//!
//! Built-in `for_each` / `show` now live as `#[component]` functions
//! in the `whisker` crate (the user-facing layer) so they share the
//! exact same author surface as user-defined control flow. They use
//! the primitives exposed from this crate
//! ([`create_phantom_element`](super::create_phantom_element),
//! [`effect`](crate::reactive::effect), the per-control-flow function
//! types in [`super::into_view`]).
//!
//! Custom control flow follows the same outline:
//!
//! ```ignore
//! #[whisker::component]
//! pub fn my_animated_show(when: ReadSignal<bool>, children: Children) -> Element {
//!     let frag = whisker::runtime::view::create_phantom_element();
//!     // ... install effect that mounts/unmounts under `frag` ...
//!     frag
//! }
//! ```
//!
//! See `docs/wrapper-less-control-flow-design.md` for the rationale.