Trait snarkvm_circuit::Nor
pub trait Nor<Rhs = Self>where
Rhs: ?Sized,{
type Output;
// Required method
fn nor(&self, other: &Rhs) -> Self::Output;
}
Expand description
Binary operator for performing (NOT a) AND (NOT b)
.
Required Associated Types§
type Output
Required Methods§
Trait Implementations§
§impl<E> OutputMode<dyn Nor<Boolean<E>, Output = Boolean<E>>> for Boolean<E>where
E: Environment,
impl<E> OutputMode<dyn Nor<Boolean<E>, Output = Boolean<E>>> for Boolean<E>where E: Environment,
type Case = (CircuitType<Boolean<E>>, CircuitType<Boolean<E>>)
§fn output_mode(
case: &<Boolean<E> as OutputMode<dyn Nor<Boolean<E>, Output = Boolean<E>>>>::Case
) -> Mode
fn output_mode( case: &<Boolean<E> as OutputMode<dyn Nor<Boolean<E>, Output = Boolean<E>>>>::Case ) -> Mode
Returns the mode of the output.