inv method

T inv(
  1. T a
)

Computes the multiplicative inverse: 1 / a.

Implementation

T inv(T a) => div(multiplicativeIdentity, a);