medea-reactive 0.1.1

Reactive mutable data containers
Documentation
//! Implementations of reactive collections based on [`std::collections`].

#![allow(clippy::module_name_repetitions)]

pub mod hash_map;
pub mod hash_set;
pub mod vec;

#[doc(inline)]
pub use {
    hash_map::{ObservableHashMap, ProgressableHashMap},
    hash_set::{ObservableHashSet, ProgressableHashSet},
    vec::{ObservableVec, ProgressableVec},
};