eyeball-im 0.2.4

Observable collections based on the `im` crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Observable collections based on the `im` crate.
//!
//! Cargo features:
//!
//! - `tracing`: Emit [tracing] events when updates are sent out

mod vector;

pub use vector::{
    ObservableVector, ObservableVectorEntries, ObservableVectorEntry, VectorDiff, VectorSubscriber,
};

#[doc(no_inline)]
pub use imbl::Vector;