pub trait AndAlso<T: Bool> {
type Result: Bool;
}
Expand description
§Logical And
A logical and operator for all you conjunctive needs. It would short circuit if that were possible, but here we are.
assert_eq!(<False as AndAlso<False>>::Result::eval(), false);
assert_eq!(<False as AndAlso<True>>::Result::eval(), false);
assert_eq!(<True as AndAlso<False>>::Result::eval(), false);
assert_eq!(<True as AndAlso<True>>::Result::eval(), true);