Function subMixed [src]

Subtract P384 points, the second being specified using affine coordinates.

Prototype

pub fn subMixed(p: P384, q: AffineCoordinates) P384

Parameters

p: P384q: AffineCoordinates

Source

pub fn subMixed(p: P384, q: AffineCoordinates) P384 { return p.addMixed(q.neg()); }