eyeball-im 0.1.0

Observable collections based on the `im` crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Observable collections based on the `im` crate.
//!
//! Cargo features:
//!
//! - `tracing`: Emit [tracing] events when updates are sent out
#![warn(missing_debug_implementations, missing_docs)]
#![allow(clippy::new_without_default)]

mod vector;

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