#sentence #words #check #whether #palindromes

palindrome

Check for palindromes in words and sentences

2 releases

Uses old Rust 2015

0.1.1 Jul 12, 2018
0.1.0 Jul 12, 2018

#25 in #whether

29 downloads per month

MIT license

6KB

ci-badge docs-badge

Palindrome

Do you want to check if something is or contains a palindrome? Use this library!

Examples

If you want to check whether something is a palindrome:

extern crate palindrome;

assert!(palindrome::is_palindrome("Wow!"));

assert!(palindrome::is_palindrome("Are we not pure? “No sir!” Panama’s moody Noriega brags. “It is garbage!” Irony dooms a man; a prisoner up to new era."));

Alternatively, if you want to check whether something contains a palindrome:

extern crate palindrome;

assert!(palindrome::contains_palindrome("This contains a palindrome, wow!"));
assert!(!palindrome::contains_palindrome("Single characters like a are not palindromes for convenience"));

License

Licensed under MIT

No runtime deps