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

x/rambda/index.d.ts>findIndex

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

It returns the index of the first element of list satisfying the predicate function.

If there is no such element, then -1 is returned.

Parameters

predicate: (x: T) => boolean
list: T[]

Returns

number

Parameters

predicate: (x: T) => boolean

Returns

(list: T[]) => number