max method

int max(
  1. int other
)

Implementation

int max(int other) {
  return other > this ? other : this;
}