mirror of
https://github.com/hexedtech/codemp.git
synced 2025-03-29 06:31:33 +01:00
17 lines
522 B
Rust
17 lines
522 B
Rust
//! ### buffer
|
|
//!
|
|
//! 
|
|
//!
|
|
//! a buffer is a container fo text edited by users.
|
|
//! this module contains buffer-related operations and helpers to create Operation Sequences
|
|
//! (the underlying chunks of changes sent over the wire)
|
|
|
|
/// buffer controller implementation
|
|
pub mod controller;
|
|
|
|
/// assorted helpers to handle buffer controllers
|
|
pub mod tools;
|
|
|
|
pub(crate) mod worker;
|
|
|
|
pub use controller::BufferController as Controller;
|