gecliht 0.2.0

A disparate collection of text manipulation and formatting algorithms.
Documentation
//! A disparate collection of text manipulation and formatting algorithms.
//!
//! All functions are exported into the top-level namespace.
//!

pub mod abbrev;
pub use abbrev::*;

pub mod chapter_ordering;
pub use chapter_ordering::*;

pub mod formatters;
pub use formatters::*;

pub mod metrics;
pub use metrics::*;

pub mod ngrams;
pub use ngrams::*;

pub mod phonetics;
pub use phonetics::*;

pub mod stemmers;
pub use stemmers::*;

pub mod stopwords;
pub use stopwords::*;