function takeLastWhile
takeLastWhile<T>(array: readonly T[],predicate: (el: T) => boolean): T[]Returns all elements in the given array after the last element that does not match the given predicate.
Examples
Example 1
Example 1
import { takeLastWhile } from "@std/collections/take_last_while"; import { assertEquals } from "@std/assert/assert_equals"; const arr = [1, 2, 3, 4, 5, 6]; assertEquals( takeLastWhile(arr, (i) => i > 4), [5, 6], );
Type Parameters
TParameters
Return Type
T[]