predicateOf.predicateOf

Given the symbol of a function or delegate this will return a new Predicate of it

template predicateOf(alias func)
Predicate!(predicateParameterType)
predicateOf
()
if (
isFunction!(func) ||
isDelegate!(func)
)

Return Value

Type: Predicate!(predicateParameterType)

the predicate

Meta