2 releases
Uses old Rust 2015
0.1.1 | Aug 22, 2016 |
---|---|
0.1.0 | Aug 19, 2016 |
#10 in #haiku
146 downloads per month
Used in 3 crates
(2 directly)
7KB
80 lines
wordsworth
A collection of useful natural language functions.
Full documentation can be found here.
Usage
This crate is on crates.io and can be
used by adding wordsworth
to the dependencies in your project's Cargo.toml
.
[dependencies]
wordsworth = "0.1.*"
and this to your crate root:
extern crate wordsworth;
Example
use wordsworth;
assert_eq!(3, syllable_counter("lucozade"));
assert_eq!(false, is_haiku("this is not\nnot\n a haiku"));
lib.rs
:
A collection of useful natural language functions.
Usage
This crate is on crates.io and can be
used by adding wordsworth
to the dependencies in your project's Cargo.toml
.
[dependencies]
wordsworth = "0.1.*"
and this to your crate root:
extern crate wordsworth;
Example
use wordsworth;
assert_eq!(3, wordsworth::syllable_counter("lucozade"));
assert_eq!(false, wordsworth::is_haiku("this is not\nnot\n a haiku"));