max<T extends num> method

T max<T extends num>(
  1. T other
)

Implementation

T max<T extends num>(T other) => (this > other ? this : other) as T;