is_true_rs
A Rust library for checking if a value is true.
Example
extern crate is_true_rs;
use IsTrue;
let x = true;
assert_eq!;
A Rust library for checking if a value is true.
extern crate is_true_rs;
use is_true_rs::IsTrue;
let x = true;
assert_eq!(x.is_true(), true);