deno.land / std@0.173.0 / collections / distinct.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
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
/** * Returns all distinct elements in the given array, preserving order by first * occurrence. * * @example * ```ts * import { distinct } from "https://deno.land/std@$STD_VERSION/collections/distinct.ts"; * import { assertEquals } from "https://deno.land/std@$STD_VERSION/testing/asserts.ts"; * * const numbers = [3, 2, 5, 2, 5]; * const distinctNumbers = distinct(numbers); * * assertEquals(distinctNumbers, [3, 2, 5]); * ``` */export function distinct<T>(array: readonly T[]): T[] { const set = new Set(array);
return Array.from(set);}
std

Version Info

Tagged at
a year ago