maxThan method

T maxThan(
  1. T other
)

Implementation

T maxThan(T other) {
  return math.max(this, other);
}