The Logical category of rule function terms within the rule definition provide the decision making and comparison logic to a rule. Many, though not all, of these functions support the Boolean return type and will return true or false in this context based on some decision or comparison. The functions within this category provide behaviors including conjunctions, value comparisons, and if-then-else if and switch-case logic.
if (value1 && value2 && value3 && value4)
AND (value1, value2, value3, value4)
Many of the other functions provide similar support within the context of their behavior.