xilem_core 0.4.0

Common core of the Xilem Rust UI framework.
Documentation
// Copyright 2024 the Xilem Authors
// SPDX-License-Identifier: Apache-2.0

mod run_once;
pub use run_once::{RunOnce, run_once, run_once_raw};

mod lens;
pub use lens::{Lens, lens};

mod map_state;
pub use map_state::{MapState, map_state};

mod map_message;
pub use map_message::{MapMessage, map_action, map_message};

mod fork;
pub use fork::{Fork, fork};

mod memoize;
pub use memoize::{Frozen, Memoize, frozen, memoize};

pub mod one_of;

mod orphan;
pub use orphan::OrphanView;