min method

double min()

Calculate the minimum value in the double list.

If there is no element, 0.0 is returned.

doubleのリストの中で最小値を算出します。

要素がない場合は0.0が返されます。

Implementation

double min() {
  if (isEmpty) {
    return 0.0;
  }
  return reduce((a, b) => a < b ? a : b);
}