1#![warn(missing_docs)]
2//! A module for the [`Buffer`] and [`Cell`] types.
34mod assert;
5mod buffer;
6mod cell;
7mod cell_width;
8mod diff;
910pub use buffer::Buffer;
11pub use cell::{Cell, CellDiffOption};
12pub use cell_width::CellWidth;
13pub use diff::BufferDiff;