helix/helix-stdx/src/lib.rs

11 lines
197 B
Rust
Raw Normal View History

//! Extensions to the standard library. A collection of helper functions
//! used throughout helix.
pub mod env;
pub mod faccess;
pub mod path;
2024-02-23 04:47:12 +08:00
pub mod range;
pub mod rope;
2024-02-23 04:47:12 +08:00
pub use range::Range;