fn batch_normalize_generic<C, P, Z, O>(points: &P, zs: &mut Z, out: &mut O)where
C: PrimeCurveParams,
C::FieldElement: BatchInvert<Z>,
C::ProjectivePoint: Double,
P: AsRef<[ProjectivePoint<C>]> + ?Sized,
Z: AsMut<[C::FieldElement]> + ?Sized,
O: AsMut<[AffinePoint<C>]> + ?Sized,Expand description
Generic implementation of batch normalization.