ts-iterable-functions
    Preparing search index...

    Type Alias IndexedPredicate<T>

    IndexedPredicate: (x: T, i: number) => unknown

    Defines a predicate that takes a value x:T and number that represents the position of x in whichever sequence it is applied to and returns a truthy/falsy value, usually to signal inclusion in an output list

    Type Parameters

    • T

    Type Declaration

      • (x: T, i: number): unknown
      • Parameters

        • x: T
        • i: number

        Returns unknown

    {@link _filter}