lt method

bool lt(
  1. dynamic y
)

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

Implementation

bool lt(dynamic y) {
  return cmp(y) < 0;
}