is-wrong 0.2.0

A library that exposes 1 function to help you check if 2 arguments are not equal
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented1 out of 1 items with examples
  • Size
  • Source code size: 2.66 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 132.38 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mnkhod

Is-Wrong

Function checks if given 2 arguments are not equal.

Examples

use is_wrong::is_wrong;

let result = is_wrong(10,5);
assert_eq!(result,true);