Trait snarkvm_wasm::Div[][src]

pub trait Div<F, Rhs = Self> where
    F: Field
{ type ErrorType; fn div<CS>(&self, cs: CS, other: &Self) -> Result<Self, Self::ErrorType>
    where
        CS: ConstraintSystem<F>
; }
Expand description

Returns division of self / other in the constraint system.

Associated Types

Required methods

Implementors