is_anagram 0.1.0

A clever way to find anagrams. (English letters only for now, sorry!)
Documentation
  • Coverage
  • 60%
    3 out of 5 items documented1 out of 3 items with examples
  • Size
  • Source code size: 20.36 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.96 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 21s Average build duration of successful builds.
  • all releases: 21s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • killercup/is_anagram
    1 0 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • killercup

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.