Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 696 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 696 Bytes

March

A Markov chain crate for Rust. This implementation should work for any item that implements Hash + Eq + Clone.

Usage

use march::Chain;

fn main() {
    let mut chain = Chain::new();
    let sentence = "The quick brown fox jumped over the lazy dog".to_lowercase();
    let mut words = sentence.split_whitespace().into_iter();
    chain.feed(&mut words);

    let sentence = chain.generate();
    dbg!(sentence);
}

See examples for more usages.