gcd abstract method

T gcd(
  1. T a,
  2. T b
)

Computes the greatest common divisor: gcd(a, b).

Implementation

T gcd(T a, T b);