Skip to content

Ryocery/wordcheck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages