Compare functions
Use these functions to compare two or more values.
Use these functions to compare two or more values.
compare.Conditional CONTROL ARG1 ARG2 ⟼ anyReturns one of two arguments depending on the value of the control argument. Read More »
compare.Default DEFAULT INPUT ⟼ anyReturns the second argument if set, else the first argument. Read More »
compare.Eq ARG1 ARG2 [ARG...] ⟼ boolReturns the boolean truth of arg1 == arg2 || arg1 == arg3. Read More »
compare.Ge ARG1 ARG2 [ARG...] ⟼ boolReturns the boolean truth of arg1 >= arg2 && arg1 >= arg3. Read More »
compare.Gt ARG1 ARG2 [ARG...] ⟼ boolReturns the boolean truth of arg1 > arg2 && arg1 > arg3. Read More »
compare.Le ARG1 ARG2 [ARG...] ⟼ boolReturns the boolean truth of arg1 <= arg2 && arg1 <= arg3. Read More »
compare.Lt ARG1 ARG2 [ARG...] ⟼ boolReturns the boolean truth of arg1 < arg2 && arg1 < arg3. Read More »
compare.Ne ARG1 ARG2 [ARG...] ⟼ boolReturns the boolean truth of arg1 != arg2 && arg1 != arg3. Read More »