min method

int min(
  1. int other
)

Implementation

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