Type Alias Predicate<T>

Predicate: (value: T) => boolean

A generic predicate type.

It means by giving a value of type T, it returns a boolean indicating whether the value satisfies the predicate.

Type Parameters

  • T

    The type of the value.

Type declaration

    • (value: T): boolean
    • Parameters

      • value: T

      Returns boolean