gte method

bool gte(
  1. int val
)

Greater than or equal to

Implementation

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