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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
x5
x5
x5
 
x17
x17
 
x17
x106
x206
x185
x253
x253
x106
 
x68
x17 |
|
// Copyright 2018-2025 the Deno authors. MIT license.
// This module is browser compatible.
/**
* Returns a tuple of two arrays with the first one containing all elements in
* the given array that match the given predicate and the second one containing
* all that do not.
*
* @typeParam T The type of the elements in the array.
*
* @param array The array to partition.
* @param predicate The predicate function to determine which array an element
* belongs to.
*
* @returns A tuple of two arrays. The first array contains all elements that
* match the predicate, the second contains all elements that do not.
*
* @example Basic usage
* ```ts
* import { partition } from "@std/collections/partition";
* import { assertEquals } from "@std/assert";
*
* const numbers = [5, 6, 7, 8, 9];
* const [even, odd] = partition(numbers, (it) => it % 2 === 0);
*
* assertEquals(even, [6, 8]);
* assertEquals(odd, [5, 7, 9]);
* ```
*/
export function partition<T>(
array: Iterable<T>,
predicate: (el: T) => boolean,
): [T[], T[]];
/**
* Returns a tuple of two arrays with the first one containing all elements in
* the given array that match the given predicate and the second one containing
* all that do not.
*
* This version of the function is a type-guard version of the function. It
* allows you to specify a type-guard predicate function that narrows the type
* of the elements in the array.
*
* @typeParam T The type of the elements in the array.
* @typeParam U The type of the elements that match the predicate.
*
* @param array The array to partition.
* @param predicate The type-guard predicate function to determine which array
* an element belongs to.
*
* @returns A tuple of two arrays. The first array contains all elements that
* match the predicate, the second contains all elements that do not.
*
* @example Basic usage
* ```ts
* import { partition } from "@std/collections/partition";
* import { assertEquals } from "@std/assert";
*
* const numbers = [5, 6, 7, 8, 9];
* const [even, odd] = partition(numbers, (it) => it % 2 === 0);
*
* assertEquals(even, [6, 8]);
* assertEquals(odd, [5, 7, 9]);
* ```
*/
export function partition<T, U extends T>(
array: Iterable<T>,
predicate: (el: T) => el is U,
): [U[], Exclude<T, U>[]];
export function partition(
array: Iterable<unknown>,
predicate: (el: unknown) => boolean,
): [unknown[], unknown[]] {
const matches: Array<unknown> = [];
const rest: Array<unknown> = [];
for (const element of array) {
if (predicate(element)) {
matches.push(element);
} else {
rest.push(element);
}
}
return [matches, rest];
}
|