max method

int max()

Calculate the maximum value in the int list.

If there is no element, 0 is returned.

intのリストの中で最大値を算出します。

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

Implementation

int max() {
  if (isEmpty) {
    return 0;
  }
  return reduce((a, b) => a > b ? a : b);
}