kutil_std/
lib.rs

1#![warn(missing_docs)]
2
3/*!
4Various Rust utilities to enhance the standard library.
5
6Part of the Kutil family of Rust utility libraries.
7
8The word "kutil" means "do-it-yourselfer" in Czech.
9
10For more information and usage examples see the
11[home page](https://github.com/tliron/rust-kutil).
12*/
13
14/// Borrow utilities.
15pub mod borrow;
16
17/// Error utilities.
18pub mod error;
19
20/// Iteration utilities.
21pub mod iter;
22
23/// String utilities.
24pub mod string;