aoutils 0.1.1

A tiny utilities package to test publishing to crates.io
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented3 out of 3 items with examples
  • Size
  • Source code size: 3.67 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 156.01 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • Andrew-OHara/aoutils
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Andrew-OHara

aoutils

A tiny utility library I published in order to learn to publish and use myown crates. As I learn more Rust, I may add more functions until this becomes an actual useful utility.

version

0.1.1

usage

use aoutils;

fn main() {
    let result = aoutils::ensure_newline("alpha");
    assert_eq!(result, "alpha\n");

    let result = aoutils::is_alphabetic("alpha");
    assert_eq!(result, true);
}

License

MIT