wordcheck

Crates.iowordcheck
lib.rswordcheck
version0.1.0
created_at2025-09-30 10:14:57.676397+00
updated_at2025-09-30 10:14:57.676397+00
descriptionA simple English word validator
homepage
repositoryhttps://github.com/Ryocery/wordcheck
max_upload_size
id1860948
size2,817,420
(Ryocery)

documentation

README

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());
Commit count: 0

cargo fmt