gte method

bool gte(
  1. dynamic y
)

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

Implementation

bool gte(dynamic y) {
  return cmp(y) > -1;
}