gte method

bool gte(
  1. double val
)

Greater than or equal to

Implementation

bool gte(double val) {
  return _val >= val;
}