Trait snarkvm_circuit::prelude::DivUnchecked
pub trait DivUnchecked<Rhs = Self>where
Rhs: ?Sized,{
type Output;
// Required method
fn div_unchecked(&self, rhs: &Rhs) -> Self::Output;
}
Expand description
Binary operator for dividing two values, without checking specific conditions.
Required Associated Types§
type Output
Required Methods§
fn div_unchecked(&self, rhs: &Rhs) -> Self::Output
Trait Implementations§
§impl<E> Metrics<dyn DivUnchecked<Field<E>, Output = Field<E>>> for Field<E>where
E: Environment,
impl<E> Metrics<dyn DivUnchecked<Field<E>, Output = Field<E>>> for Field<E>where E: Environment,
§impl<E> OutputMode<dyn DivUnchecked<Field<E>, Output = Field<E>>> for Field<E>where
E: Environment,
impl<E> OutputMode<dyn DivUnchecked<Field<E>, Output = Field<E>>> for Field<E>where E: Environment,
type Case = (CircuitType<Field<E>>, CircuitType<Field<E>>)
§fn output_mode(
case: &<Field<E> as OutputMode<dyn DivUnchecked<Field<E>, Output = Field<E>>>>::Case
) -> Mode
fn output_mode( case: &<Field<E> as OutputMode<dyn DivUnchecked<Field<E>, Output = Field<E>>>>::Case ) -> Mode
Returns the mode of the output.