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