Skip to main content
Module

x/rambda/immutable.d.ts>findLast

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

It returns the last element of list satisfying the predicate function.

If there is no such element, then undefined is returned.

Parameters

fn: (x: T) => boolean
list: readonly T[]

Returns

T | undefined

Parameters

fn: (x: T) => boolean

Returns

(list: readonly T[]) => T | undefined