min function

num min(
  1. num a,
  2. num b
)

Returns the smaller of two values.

Implementation

num min(num a, num b) => math.min(a, b);