lt method

bool lt(
  1. int val
)

Less than

Implementation

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