flo_rope/stream_rope/mod.rs
1//!
2//! # Stream rope functions
3//!
4//! The functions in this module provide support functionality for streaming changes to
5//! a rope to other parts of the application. They do not directly support the futures
6//! stream (see the rope bindings in `flo_binding` for that functionality) but rather
7//! provide the building blocks for implementing that functionality elsewhere.
8//!
9
10mod push_rope;
11mod pull_rope;
12mod concat_rope;
13#[cfg(test)] mod tests;
14
15pub use self::push_rope::*;
16pub use self::pull_rope::*;
17pub use self::concat_rope::*;