gt method

bool gt(
  1. dynamic y
)

Return true if the value of this Big is greater than the value of Big y, otherwise return false.

Implementation

bool gt(dynamic y) {
  return cmp(y) > 0;
}