Function Q

  • Provides extra type checking for the predicate.

    Type Parameters

    • T

      The type of the desired value.

    • U = Value

      The type of the actual value.

    Parameters

    • clazz: new (...args: any) => T

      The desired class type.

    • predicate: Predicate<T> = ...

      The predicate to test desired class type.

    • Optionalfield: (v: U) => any

    Returns Predicate<U>

    true if the value is an instance of the class and satisfies the predicate, otherwise false.