Skip to main content
Module

x/rambda/index.d.ts>splitWhen

Faster and smaller alternative to Ramda
Go to Latest
function splitWhen
import { splitWhen } from "https://deno.land/x/rambda@v7.0.1/index.d.ts";

It splits list to two arrays according to a predicate function.

The first array contains all members of list before predicate returns true.

Parameters

predicate: Predicate<T>
list: U[]

Returns

(U[])[]

Parameters

predicate: Predicate<T>

Returns

<U>(list: U[]) => (U[])[]