is_anagram

Crates.iois_anagram
lib.rsis_anagram
version0.1.0
sourcesrc
created_at2017-06-17 21:05:50.716956
updated_at2017-06-17 21:05:50.716956
descriptionA clever way to find anagrams. (English letters only for now, sorry!)
homepage
repositoryhttps://github.com/killercup/is_anagram
max_upload_size
id19359
size17,419
Pascal Hertleif (killercup)

documentation

https://docs.rs/is_anagram

README

Anagram identifier

A quick thing I threw together after seeing this tweet.

Build Status

Documentation

What it does

extern crate is_anagram;
use is_anagram::IsAnagram;

fn main() {
    assert!("banana".is_anagram_of("nabana").unwrap());
    assert!(!"lorem".is_anagram_of("ipsum").unwrap());
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 4

cargo fmt