Back to Es Toolkit

length (函数式编程)

docs/zh_hans/fp/reference/length.md

1.49.0691 B
Original Source

length (函数式编程)

创建一个返回数组长度的函数。与函数式编程的 pipe 一起使用。

typescript
const result = pipe(array, length());

::: info

这个辅助函数专用于 es-toolkit/fp。当你想把这个操作作为 pipe 管道中的一步来组合时使用它。

:::

用法

length 返回管道中数组包含的值数量。

typescript
import { length, pipe } from 'es-toolkit/fp';

pipe([1, 2, 3], length()); // => 3

参数

此函数不接收参数;请以 length() 的形式调用。

返回值

((array: readonly T[]) => number): 一个将 readonly T[] 映射为其长度的函数。