operator / method

T operator /(
  1. T other
)

Implementation

T operator /(T other) {
  var x = this as T;
  return x * other.inv();
}