ConditionOperand
public enum ConditionOperand : Encodableextension ConditionOperand: ExpressibleByFloatLiteralextension ConditionOperand: ExpressibleByIntegerLiteralextension ConditionOperand: ExpressibleByStringLiteralextension ConditionOperand: ExpressibleByStringInterpolationextension ConditionOperand: ConditionOperandConvertibleAn operand for a Condition that can represent either a Number, a Variable, or Text.
- 
                  
                  A variable operand. DeclarationSwift case variable(Variable)
- 
                  
                  A number operand. DeclarationSwift case number(Number)
- 
                  
                  A text operand. DeclarationSwift case text(Text)
- 
                  
                  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. 
- 
                  
                  Creates an instance initialized to the specified floating-point value. Attention Do not call this initializer directly. Instead, initialize a variable or constant using a floating-point literal. DeclarationSwift public init(floatLiteral value: Double)ParametersvalueThe value of the new instance. 
- 
                  
                  Creates an instance initialized to the specified integer value. Attention Do not call this initializer directly. Instead, initialize a variable or constant using an integer literal. DeclarationSwift public init(integerLiteral value: Int64)ParametersvalueThe value of the new instance. 
- 
                  
                  Creates an instance initialized to the given string value. Attention Do not call this initializer directly. Instead, initialize a variable or constant using a string literal. DeclarationSwift public init(stringLiteral value: String)ParametersvalueThe value of the new instance. 
- 
                  
                  Creates an instance from a string interpolation. Attention Do not call this initializer directly. Instead, initialize a variable or constant using an interpolated string literal. DeclarationSwift public init(stringInterpolation: Text.StringInterpolation)ParametersstringInterpolationAn instance of StringInterpolationwhich has had each segment of the string literal appended to it.
- 
                  
                  An operand that represents this value. DeclarationSwift public var conditionOperand: ConditionOperand { get }
 View on GitHub
View on GitHub ConditionOperand Enumeration Reference
        ConditionOperand Enumeration Reference