Skip to main content

bubbles/value/
mod.rs

1//! Value model: [`Value`] enum, [`VariableStorage`] trait, and [`HashMapStorage`].
2
3mod storage;
4mod types;
5
6pub use storage::{HashMapStorage, VariableStorage};
7pub use types::Value;