2 releases

Uses old Rust 2015

0.1.1 Jun 24, 2018
0.1.0 Jun 24, 2018

#2051 in Algorithms

Download history 491/week @ 2023-12-18 256/week @ 2023-12-25 329/week @ 2024-01-01 382/week @ 2024-01-08 454/week @ 2024-01-15 414/week @ 2024-01-22 328/week @ 2024-01-29 338/week @ 2024-02-05 512/week @ 2024-02-12 426/week @ 2024-02-19 479/week @ 2024-02-26 448/week @ 2024-03-04 356/week @ 2024-03-11 425/week @ 2024-03-18 542/week @ 2024-03-25 541/week @ 2024-04-01

1,919 downloads per month
Used in rsnltk

MIT license

10KB

ci-badge docs-badge

yn

Want to check if a value is yes, no, maybe both? Maybe you want to check if a value is somewhat yes? Somewhat no?

We've got you covered! This is state of the art.. EHEM.. Natural language processing. With yn, you will be the one who can safely say NO!

Examples

If you want to use this very advanced natural language processing technology you simply need to do the following:

To check if something is yes:

extern crate yn;

assert!(yn::yes("yes")); // this is yes, you can be 100% sure

If you don't have time to write yes:

extern crate yn;

assert!(yn::yes("y")); // this is also yes

If you're a bleepity blooping machine:

extern crate yn;

assert!(yn::yes("1"));

Of course, this is not yes:

extern crate yn;

assert!(!yn::yes("no"));

You can also check if something is somewhat yes:

extern crate yn;

assert!(yn::is_somewhat_yes("this has a y so it is the word"));

Or if you want to check if something just contains y:

extern crate yn;

assert!(yn::is_kinda_yes("very much so"));

Same goes for no.
The options are endless. Your imagination is the limit.

License

Licensed under MIT

No runtime deps