Returns the maximum of this value and another.
Parameters:
other
int
Returns: int — the larger value.
int max(int other) => this > other ? this : other;