compare.Conditional
Returns one of two arguments depending on the value of the control argument.
compare.Default
Returns the second argument if set, else the first argument.
compare.Eq
Returns the boolean truth of arg1 == arg2 || arg1 == arg3.
compare.Ge
Returns the boolean truth of arg1 >= arg2 && arg1 >= arg3.
compare.Gt
Returns the boolean truth of arg1 > arg2 && arg1 > arg3.
compare.Le
Returns the boolean truth of arg1 <= arg2 && arg1 <= arg3.
compare.Lt
Returns the boolean truth of arg1 < arg2 && arg1 < arg3.
compare.Ne
Returns the boolean truth of arg1 != arg2 && arg1 != arg3.