hasOnly
Verifies all items of an array, collection or enumerable object pass the truth function.
Signature
hasOnly<T>(
list: TList<T> | undefined,
fn: (item: T) => boolean
): boolean
Parameters
Name | Type | Optional | Description |
---|---|---|---|
list | T[] | undefined | No | Specifies the array, collection or enumerable object to iterate through. |
fn | (item: T) => boolean | No | Specifies the truth function. Each item is supplied to the function, passing the item as argument. The function should return a boolean value with the individual verification result. |
Return value
Returns true
when all items pass the verification test.
Example
import { hasOnly } from "@tripetto/builder";
hasOnly<number>([1, 2, 3], (nItem: number) => nItem > 0); // Returns `true`
hasOnly<number>([1, 2, 3], (nItem: number) => nItem > 1); // Returns `false`