replicadse / ez_alphabet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EZ Alphabet

An implementation of an easy to work with alphabet.

Examples

// Following example creates 4 strings, encoding the numbers 4 to 8 (start: 4, count: 5) in the given alphabet.
assert_eq!(Alphabet::from("abcdef").unwrap().generate(4, 5), vec!["e", "f", "aa", "ab", "ac"]);

About

License:MIT License


Languages

Language:Rust 100.0%