1 2 3 4 5 6 7 8 9 10 11
//! A small library to track human-readable text positions. mod insert; pub use insert::InsertPosition; mod position; pub(crate) use position::TextPosition; mod range; pub use range::TextRange;