Skip to main content
Module

x/rambda/immutable.d.ts>dropLastWhile

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

Parameters

predicate: (x: string) => boolean
iterable: string

Returns

string

Parameters

predicate: (x: string) => boolean

Returns

(iterable: string) => string

Parameters

predicate: (x: T) => boolean
iterable: readonly T[]

Returns

readonly T[]

Parameters

predicate: (x: T) => boolean

Returns

<T>(iterable: readonly T[]) => readonly T[]