mirror of
https://github.com/toss/es-toolkit.git
synced 2024-12-01 10:45:08 +03:00
e9ede74362
* Translate Simplified Chinese * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Update docs/.vitepress/shared.mts --------- Co-authored-by: Sojin Park <raon0211@gmail.com>
683 B
683 B
takeRightWhile
从数组末尾获取元素,直到谓词函数返回 false
。
签名
function takeRightWhile<T>(arr: T[], shouldContinueTaking: (item: T) => boolean): T[];
参数
arr
(T[]
): 要获取元素的数组。shouldContinueTaking
((item: T) => boolean
): 谓词函数,对每个元素调用该函数。只要该函数返回true
,就将元素包含在结果中。
返回值
(T[]
) 包含从数组末尾获取的元素,直到谓词函数返回 false
的新数组。
示例
// 返回 [3, 2, 1]
takeRightWhile([5, 4, 3, 2, 1], n => n < 4);
// 返回 []
takeRightWhile([1, 2, 3], n => n > 3);