min<T extends num> method

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

Implementation

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