mathMin function

double mathMin(
  1. double a,
  2. double b
)

Implementation

double mathMin(double a, double b) => a < b ? a : b;