is_true_rs 0.1.2

A Rust library for checking if a value is true.
Documentation
  • Coverage
  • 33.33%
    1 out of 3 items documented0 out of 2 items with examples
  • Size
  • Source code size: 37.16 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 240.81 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • lemon-mint

is_true_rs

A Rust library for checking if a value is true.

Example

extern crate is_true_rs;
use is_true_rs::IsTrue;

let x = true;
assert_eq!(x.is_true(), true);