Class PImpl<U>

Initial chainable predicate object.

Type Parameters

  • U

    The type of the value.

Constructors

Methods

Constructors

Methods

  • Chain another predicate with AND operator.

    If field is not provided, it will continue to use the current value as the subject of the predicate.

    If clazz is provided, it will check if the field is an instance of the class or not first before applying the predicate, saving you from an extra type check before this call.

    Type Parameters

    • V = U

      The type of the field.

    Parameters

    • predicate: PImpl<V> | Predicate<V>

      Predicate.

    • Optionalfield: FieldFn<U, V>

      Field function.

    • Optionalclazz: new (...args: any) => V

      Class type.

    Returns PImpl<U>

    Chainable predicate object.

  • Chain another predicate with OR operator.

    If field is not provided, it will continue to use the current value as the subject of the predicate.

    If clazz is provided, it will check if the field is an instance of the class or not first before applying the predicate, saving you from an extra type check before this call.

    Type Parameters

    • V = U

      The type of the field.

    Parameters

    • predicate: PImpl<V> | Predicate<V>

      Predicate.

    • Optionalfield: FieldFn<U, any>

      Field function.

    • Optionalclazz: new (...args: any) => V

      Class type.

    Returns PImpl<U>

    Chainable predicate object.

  • Apply the predicate to a value.

    Parameters

    • value: U

      The value to test.

    Returns boolean

    true if the value satisfies the predicate, otherwise false.