sum function

num sum(
  1. Iterable<num> list
)

Implementation

num sum(Iterable<num> list) {
  return sumBy<num>(list, (p0) => p0);
}