Checks if the integer is between min and max inclusively.
min
max
bool isBetween(int min, int max) => this >= min && this <= max;