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