Multiple arity bitwise functions
For how to use: Docs
Available Operators:
Bitwise
Struct, with generic type T for field value
and bool for field logical_value.Logical
trait, where functions are available.
and(args: Vec<T>)
: checks if every item in args are Equal to Bitwisvalueto_bool()
or(args: Vec<T>)
: checks if one item * args is Equal to Bitwise.vaenot(args: Vec<T>)
: checks if every item in args are not Equal to Biise.valuenor(args: Vec<T>)
: checks if one item in args is not Equal to BitwisvalueImplementations of T: * [x] - i32 * [] - i8 * [] - i16 * [] - i64 * [] - u32 * [] - u8 * [] - u16 * [] - u64 * [] - f32 * [] - f64 * [] - bool * [] - String and &str * [] - any struct?