pub trait NegMod<Mod = NonZero<Self>> { type Output; // Required method fn neg_mod(&self, p: &Mod) -> Self::Output; }
Compute -self mod p.
-self mod p
Output type.
alloc