wordmarkov 0.1.4

A simple but flexible Markov chain library, specifically for text sentences, which handles punctuation and whitespace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/*!
 * Selectors decide which possible next state to choose.
 *
 * Here is the interface code, as well as a collection of Selector
 * implementations.
 */

pub mod fixed;
pub mod interface;
pub mod random;

pub mod prelude;