eq method

bool eq(
  1. dynamic y
)

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

Implementation

bool eq(dynamic y) {
  return cmp(y) == 0;
}