readable 0.16.0

Human readable strings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! General string utilities
//!
//! This module contain [`Str`], the stack-based that
//! backs almost all string types in `readable`.
//!
//! It also contains some general string utilities.

mod str;
pub use self::str::Str;

mod headtail;
pub use headtail::{
	DOT,
	HeadTail,Head,Tail,HeadDot,
	TailDot,HeadTailStr,HeadTailDot,
};