wordcheck 0.1.0

A simple English word validator
Documentation
  • Coverage
  • 0%
    0 out of 5 items documented0 out of 4 items with examples
  • Size
  • Source code size: 2.81 MB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 281.9 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 7s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Ryocery/wordcheck
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Ryocery

wordcheck

A simple English word validator.

Usage

use wordcheck::CheckWord;

let validator = CheckWord::new();
assert!(validator.is_valid("hello")); // true
assert!(!validator.is_valid("asdfgh")); // false

let words = validator.get_words();
println!("Dictionary contains {} words", words.len());