is_true_rs 0.1.1

A Rust library for checking if a value is true.
Documentation
is_true_rs-0.1.1 has been yanked.

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);