• Returns true if the provided predicate function returns true for all elements in a collection,false otherwise

    Example

    all([4, 2, 3], (x) => x > 1); // true
    

    Example

    all([1, 2, 3]); // true
    

    Type Parameters

    • T

    Parameters

    • array: T[]
    • Optional fn: ((value: T, index: number, array: T[]) => boolean) = Boolean
        • (value: T, index: number, array: T[]): boolean
        • Parameters

          • value: T
          • index: number
          • array: T[]

          Returns boolean

    Returns boolean

Generated using TypeDoc