operator <= method

bool operator <=(
  1. IntType other
)

Implementation

bool operator <=(IntType other) {
  return this._value <= other._value;
}