rstring 0.1.0

A comprehensive set of string manipulation utilities inspired by Apache Commons Lang3 StringUtils
Documentation
//! # rstring
//!
//! A comprehensive set of string manipulation utilities
//!
//! This library is heavily inspired by the well-known StringUtils Java.

pub mod abbreviate;
pub mod affixes;
pub mod case;
pub mod checks;
pub mod contains;
pub mod index;
pub mod pad;
pub mod remove;
pub mod reverse;
mod shared;
pub mod substring;
pub mod wrap;

pub use abbreviate::*;
pub use affixes::*;
pub use case::*;
pub use checks::*;
pub use contains::*;
pub use index::*;
pub use pad::*;
pub use remove::*;
pub use reverse::*;
pub use substring::*;
pub use wrap::*;