klyn.data.internal.QueryPredicate.test
method
public abstract test(value as T) as Boolean
Description

Evaluates the predicate for one source row.

Parameters
ParameterDescription
valueSource row.
Returns

True when the row remains in the result.

Example
predicate as QueryPredicate<Int> = lambda(value): value > 10
assert predicate.test(20)