Boolean functions
eq
: Equality
Test if two elements are equals.
Render
yes
orno
:
Render
true
orfalse
:
Render
yes
orno
:
neq
: Not equality
Test if two elements are NOT equals.
Render
yes
orno
:
Render
true
orfalse
:
Render
yes
orno
:
gt
: Greater operator
Greater operator (arguments must be Comparable elements).
Render
yes
orno
:
Render
true
orfalse
:
Render
yes
orno
:
gte
: Greater or equal operator
Greater or equal operator (arguments must be Comparable elements).
Render
yes
orno
:
Render
true
orfalse
:
Render
yes
orno
:
lt
: Less operator
Less than operator (arguments must be Comparable elements).
Render
yes
orno
:
Render
true
orfalse
:
Render
yes
orno
:
lte
: Less or equal operator
Less than operator (arguments must be Comparable elements.
Render
yes
orno
:
Render
true
orfalse
:
Render
yes
orno
:
and
: And operator
And operator. This is a boolean operation.
Truthiness of arguments is determined by isEmpty, so this helper can be used with non-boolean values.
Multiple arguments are supported too:
Render
yes
orno
:
Render
true
orfalse
:
Render
yes
orno
:
or
: Or operator
Or operator. This is a boolean operation
Truthiness of arguments is determined by isEmpty, so this helper can be used with non-boolean values.
Multiple arguments are supported too:
Render
yes
orno
:
Render
true
orfalse
:
Render
yes
orno
:
not
: Not operator
Truthiness of arguments is determined by isEmpty, so this helper can be used with non-boolean values.
Render
yes
orno
:
Render
true
orfalse
:
Render
y
orn
:
cmp
: Compare operator
Compare to object as Comparables.
Renders 1 if a > b, 0 if a == b -1 if a < b
isNull
: Compare operator
Test if one element is null.
isNotNull
: Compare operator
Test if one element is not null.