wordsworth 0.1.1

A collection of natural language analysis functions
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented1 out of 3 items with examples
  • Size
  • Source code size: 17.16 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.13 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Documentation
  • booyaa/wordsworth
    5 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • booyaa

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"));