sum method

int sum()

Calculate the sum using all values in the int list.

If there is no element, 0 is returned.

intのリストのすべての値を用いて合計を算出します。

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

Implementation

int sum() {
  if (isEmpty) {
    return 0;
  }
  return reduce((a, b) => a + b);
}