A crate that provides a trinary type
// Creates a type that is both true and false let both = Trit::Both; // both.is_true() == true // both.is_false() == true // both.only_true() == false // both.only_false() == false