(collection: Iterable<BigDecimal>)
| 1340 | * @since 3.16.0 |
| 1341 | */ |
| 1342 | export const sumAll = (collection: Iterable<BigDecimal>): BigDecimal => { |
| 1343 | let out = zero |
| 1344 | for (const n of collection) { |
| 1345 | out = sum(out, n) |
| 1346 | } |
| 1347 | |
| 1348 | return out |
| 1349 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…