lte method

bool lte(
  1. double val
)

Less than or equal to

Implementation

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