Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rambda/immutable.d.ts>findLast

Faster and smaller alternative to Ramda
Latest
function findLast
import { findLast } from "https://deno.land/x/rambda@9.2.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