lte method

bool lte(
  1. int val
)

Less than or equal to

Implementation

bool lte(int val) {
  return _val <= val;
}