gt method

bool gt(
  1. double val
)

Greater than

Implementation

bool gt(double val) {
  return _val > val;
}