INNER CODE UNIT · Rust
div_assign
pluto/ronkathon · src/algebra/field/binary_towers/mod.rs:132
fn div_assign(&mut self, rhs: Self) { *self = *self / rhs; }
}
impl Rem for BinaryField {
type Output = Self;
fn rem(self, rhs: Self) -> Self::Output { self - (self / rhs) * rhs }
}