wordsworth

Crates.iowordsworth
lib.rswordsworth
version0.1.1
sourcesrc
created_at2016-08-19 08:54:18.401341
updated_at2016-08-22 17:48:24.165934
descriptionA collection of natural language analysis functions
homepage
repositoryhttps://github.com/booyaa/wordsworth
max_upload_size
id6023
size17,005
Mark Sta Ana (booyaa)

documentation

https://booyaa.github.io/wordsworth/wordsworth/index.html

README

wordsworth

Build Status

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"));
Commit count: 3

cargo fmt