generator-combinator

Provides parser-combinator-like combinable text generation in Rust.

You can add this crate to your Rust project with generator-combinator = "0.1.0". Documentation on docs.rs and crates.io listing.

To generate street address-like input, only a few components are required. We can quickly produce a range of nearly 1B possible values that can be fully iterated over or randomly sampled:

```rust use generator_combinator::Generator; let space = Generator::from(' ');

// 3-5 digits for the street number. If the generated value has leading 0s, trim them out let number = (Generator::Digit * (3, 5)).transform(|s| { if s.startswith('0') { s.trimstartmatches('0').tostring() } else { s } });

let directional = space.clone() + oneof!("N", "E", "S", "W", "NE", "SE", "SW", "NW"); let streetnames = space.clone() + oneof!("Boren", "Olive", "Spring", "Cherry", "Seneca", "Yesler", "Madison", "James", "Union", "Mercer"); let streetsuffixes = space.clone() + oneof!("Rd", "St", "Ave", "Blvd", "Ln", "Dr", "Way", "Ct", "Pl");

let address = number + directional.clone().optional() // optional pre-directional + streetnames + streetsuffixes + directional.clone().optional(); // optional post-directional

asserteq!(address.len(), 809190_000);

let addrvalues = address.values(); println!("Example: {}", addrvalues.random()); //Example: 344 W Yesler Way println!("Example: {}", addrvalues.random()); //Example: 702 NE Spring Ct N println!("Example: {}", addrvalues.random()); //Example: 803 SW Madison Way SE ```

This library is 0.2.0 - there may be issues, functionality may be incomplete, etc.

Known issues / nota bene

TODO

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.