# Functions

And creates a predicate that will perform the logical and operation on the given predicates.
Between creates a predicate that will pass items if the value stored under the given item attribute is contained inside the given range.
Equal creates a predicate that will pass items if the given value and the value stored under the given item attribute are equal.
False creates a predicate that always evaluates to false and passes no items.
Greater creates a predicate that will pass items if the value stored under the given item attribute is greater than the given value.
GreaterOrEqual creates a predicate that will pass items if the value stored under the given item attribute is greater than or equal to the given value.
ILike creates a predicate that will pass items if the given pattern matches the value stored under the given item attribute in a case-insensitive manner.
In creates a predicate that will pass items if the value stored under the given item attribute is a member of the given values.
InstanceOf creates a predicate that will pass entries for which the value class is an instance of the given className.
Less creates a predicate that will pass items if the value stored under the given item ``attribute`` is less than the given value.
LessOrEqual creates a predicate that will pass items if the value stored under the given item attribute is less than or equal to the given value.
Like creates a predicate that will pass items if the given pattern matches the value stored under the given item attribute in a case-sensitive manner.
Not creates a predicate that will negate the result of the given predicate.
NotEqual creates a predicate that will pass items if the given value and the value stored under the given item attribute are not equal.
Or creates a predicate that will perform the logical or operation on the given predicates.
Regex creates a predicate that will pass items if the given pattern matches the value stored under the given item attribute.
SQL creates a predicate that will pass items that match the given SQL where expression.
True creates a predicate that always evaluates to true and passes all items.

# Interfaces

No description provided by the author