lt method

bool lt(
  1. double val
)

Less than

Implementation

bool lt(double val) {
  return _val < val;
}