Condition
public enum Conditionextension Condition: EncodableThe evaluated logic that determines which branch to follow. Evaluated by If shortcuts.
- 
                  
                  This condition evaluates to true if the variable equals the condition operand. DeclarationSwift case `is`(Variable, ConditionOperand)
- 
                  
                  This condition evaluates to true if the variable does not equal the condition operand. DeclarationSwift case isNot(Variable, ConditionOperand)
- 
                  
                  This condition evaluates to true if the variable has any value. DeclarationSwift case hasAnyValue(Variable)
- 
                  
                  This condition evaluates to true if the variable does not have any value. DeclarationSwift case doesNotHaveAnyValue(Variable)
- 
                  
                  This condition evaluates to true if the variable is greater than the condition operand. DeclarationSwift case isGreaterThan(Variable, ConditionNumberOperand)
- 
                  
                  This condition evaluates to true if the variable is greater than or equal to the condition operand. DeclarationSwift case isGreaterThanOrEqualTo(Variable, ConditionNumberOperand)
- 
                  
                  This condition evaluates to true if the variable is less than the condition operand. DeclarationSwift case isLessThan(Variable, ConditionNumberOperand)
- 
                  
                  This condition evaluates to true if the variable is less than or equal to the condition operand. DeclarationSwift case isLessThanOrEqualTo(Variable, ConditionNumberOperand)
- 
                  
                  This condition evaluates to true if the variable is between the two condition operands. DeclarationSwift case isBetween(Variable, ConditionNumberOperand, ConditionNumberOperand)
- 
                  
                  Encodes this value into the given encoder. Throws This function throws an error if any values are invalid for the given encoder’s format.DeclarationSwift public func encode(to encoder: Encoder) throwsParametersencoderThe encoder to write data to. 
 View on GitHub
View on GitHub Condition Enumeration Reference
        Condition Enumeration Reference