call method

bool call(
  1. T t
)

Run the predicate and extract its bool value given t.

Implementation

bool call(T t) => _predicate(t);