lessThan method

bool lessThan(
  1. num other
)

Checks if value is less than other. This is equivalent to the < operator. Returns true if this is less than other. Returns false if this is greater than or equal to other.

Implementation

bool lessThan(num other) => isLess(this, other);