deno.land / std@0.166.0 / collections / max_by.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
/** * Returns the first element that is the largest value of the given function or undefined if there are no elements. * * Example: * * ```ts * import { maxBy } from "https://deno.land/std@$STD_VERSION/collections/max_by.ts"; * import { assertEquals } from "https://deno.land/std@$STD_VERSION/testing/asserts.ts"; * * const people = [ * { name: 'Anna', age: 34 }, * { name: 'Kim', age: 42 }, * { name: 'John', age: 23 }, * ]; * * const personWithMaxAge = maxBy(people, i => i.age); * * assertEquals(personWithMaxAge, { name: 'Kim', age: 42 }); * ``` */export function maxBy<T>( array: readonly T[], selector: (el: T) => number,): T | undefined;export function maxBy<T>( array: readonly T[], selector: (el: T) => string,): T | undefined;export function maxBy<T>( array: readonly T[], selector: (el: T) => bigint,): T | undefined;export function maxBy<T>( array: readonly T[], selector: (el: T) => Date,): T | undefined;export function maxBy<T>( array: readonly T[], selector: | ((el: T) => number) | ((el: T) => string) | ((el: T) => bigint) | ((el: T) => Date),): T | undefined { let max: T | undefined = undefined; let maxValue: ReturnType<typeof selector> | undefined = undefined;
for (const current of array) { const currentValue = selector(current);
if (maxValue === undefined || currentValue > maxValue) { max = current; maxValue = currentValue; } }
return max;}
std

Version Info

Tagged at
a year ago