Function subMixed [src]
Subtract secp256k1 points, the second being specified using affine coordinates.
Prototype
pub fn subMixed(p: Secp256k1, q: AffineCoordinates) Secp256k1
Parameters
p: Secp256k1
q: AffineCoordinates
Source
pub fn subMixed(p: Secp256k1, q: AffineCoordinates) Secp256k1 {
return p.addMixed(q.neg());
}