add_ed/buffer/
mod.rs

1// Common imports for buffer components
2use std::fmt::Debug;
3use crate::history::Snapshot;
4
5/// We export the [`Buffer`] iterators in their own module, as most users won't
6/// need them.
7pub mod iters;
8use iters::*;
9
10// The other modules we keep private and export their contents directly
11
12mod line;
13pub use line::*;
14
15mod buffer;
16pub use buffer::*;