Skip to main content
Module

x/rambda/immutable.d.ts>all

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

It returns true, if all members of array list returns true, when applied as argument to predicate function.

Parameters

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

Returns

boolean

Parameters

predicate: (x: T) => boolean

Returns

(list: readonly T[]) => boolean