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)
)

Members

Functions

predicateOf
Predicate!(predicateParameterType) predicateOf()

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

Parameters

func

the symbol of the function or delegate to make a predicate of

Meta