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