lte method

bool lte(
  1. dynamic y
)

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

Implementation

bool lte(dynamic y) {
  return cmp(y) < 1;
}