neg method

T neg(
  1. T a
)

Computes the additive inverse: -a.

Implementation

T neg(T a) => sub(additiveIdentity, a);