gt method

bool gt(
  1. int val
)

Greater than

Implementation

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