OutputOfBitAnd

Type Alias OutputOfBitAnd 

Source
pub type OutputOfBitAnd<L, R> = Xpr<BitAnd<Xpr<L>, Xpr<R>>>;
Expand description

The output of the given operation for two operands L, R where L and R are operation structs from this module, e.g. e.g. OutputOfXXX<Term<u32>, OutputOfMul<Term<bool>, Term<f64>>>.

This is a convenience type to not have to write out the Xpr enum explicitly.

Aliased Typeยง

pub struct OutputOfBitAnd<L, R>(/* private fields */);