Returns true if this number is in the range min..max (inclusive).
true
min
max
bool isInRange(num min, num max) => this >= min && this <= max;