-
-
Notifications
You must be signed in to change notification settings - Fork 679
Expand file tree
/
Copy pathmultidimensional-array.d.ts
More file actions
38 lines (29 loc) · 1.17 KB
/
multidimensional-array.d.ts
File metadata and controls
38 lines (29 loc) · 1.17 KB
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
import type {Subtract} from './subtract.d.ts';
import type {IsEqual} from './is-equal.d.ts';
type Recursive<T> = Array<Recursive<T>>;
/**
Creates a type that represents a multidimensional array of the given type and dimension.
Use-cases:
- Return a n-dimensional array from functions.
- Declare a n-dimensional array by defining its dimensions rather than declaring `[]` repetitively.
- Infer the dimensions of a n-dimensional array automatically from function arguments.
- Avoid the need to know in advance the dimensions of a n-dimensional array allowing them to be dynamic.
@example
```
import type {MultidimensionalArray} from 'type-fest';
declare function emptyMatrix<Item = unknown>(): <Dimension extends number>(
dimensions: Dimension,
) => MultidimensionalArray<Item, Dimension>;
const unknown3DMatrix = emptyMatrix()(3);
//=> unknown[][][]
const boolean2DMatrix = emptyMatrix<boolean>()(2);
//=> boolean[][]
```
@category Array
*/
export type MultidimensionalArray<Element, Dimensions extends number> = number extends Dimensions
? Recursive<Element>
: IsEqual<Dimensions, 0> extends true
? Element
: Array<MultidimensionalArray<Element, Subtract<Dimensions, 1>>>;
export {};