Predicate<T> constructor

const Predicate<T>(
  1. bool _predicate(
    1. T t
    )
)

Build a Predicate given a function returning a bool.

Implementation

const Predicate(this._predicate);