medea-reactive 0.1.3

Reactive mutable data containers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Implementations of reactive collections based on [`std::collections`].

// TODO: Needs refactoring.
#![expect(clippy::module_name_repetitions, reason = "needs refactoring")]

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},
};