2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2021-09-18 18:29:29 +00:00
|
|
|
// This module is browser compatible.
|
2021-08-09 08:55:26 +00:00
|
|
|
|
|
|
|
/**
|
2022-11-25 11:40:23 +00:00
|
|
|
* Applies the given selector to all elements in the given collection and
|
|
|
|
* calculates the sum of the results.
|
2021-08-09 08:55:26 +00:00
|
|
|
*
|
2024-05-20 07:34:47 +00:00
|
|
|
* @typeParam T The type of the array elements.
|
2024-05-06 07:51:20 +00:00
|
|
|
*
|
|
|
|
* @param array The array to calculate the sum of.
|
|
|
|
* @param selector The selector function to get the value to sum.
|
|
|
|
*
|
|
|
|
* @returns The sum of all elements in the collection.
|
|
|
|
*
|
|
|
|
* @example Basic usage
|
2021-08-09 08:55:26 +00:00
|
|
|
* ```ts
|
2024-04-29 02:57:30 +00:00
|
|
|
* import { sumOf } from "@std/collections/sum-of";
|
refactor(assert,async,bytes,cli,collections,crypto,csv,data-structures,datetime,dotenv,encoding,expect,fmt,front-matter,fs,html,http,ini,internal,io,json,jsonc,log,media-types,msgpack,net,path,semver,streams,testing,text,toml,ulid,url,uuid,webgpu,yaml): import from `@std/assert` (#5199)
* refactor: import from `@std/assert`
* update
2024-06-30 08:30:10 +00:00
|
|
|
* import { assertEquals } from "@std/assert";
|
2021-08-09 08:55:26 +00:00
|
|
|
*
|
|
|
|
* const people = [
|
2022-11-25 11:40:23 +00:00
|
|
|
* { name: "Anna", age: 34 },
|
|
|
|
* { name: "Kim", age: 42 },
|
|
|
|
* { name: "John", age: 23 },
|
|
|
|
* ];
|
2024-05-06 07:51:20 +00:00
|
|
|
*
|
|
|
|
* const totalAge = sumOf(people, (person) => person.age);
|
2021-08-09 08:55:26 +00:00
|
|
|
*
|
2022-11-25 11:40:23 +00:00
|
|
|
* assertEquals(totalAge, 99);
|
2021-08-09 08:55:26 +00:00
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
export function sumOf<T>(
|
2023-05-30 23:48:21 +00:00
|
|
|
array: Iterable<T>,
|
2021-08-09 08:55:26 +00:00
|
|
|
selector: (el: T) => number,
|
|
|
|
): number {
|
|
|
|
let sum = 0;
|
|
|
|
|
|
|
|
for (const i of array) {
|
|
|
|
sum += selector(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
return sum;
|
|
|
|
}
|