BinaryOperation
public enum BinaryOperation: String
Defines the type of binary operation being performed.
-
Adding two values.
Declaration
Swift
case addition
-
Subtracting one value from another.
Declaration
Swift
case subtraction
-
Multiplying two values.
Declaration
Swift
case multiplication
-
Dividing a value by another.
Declaration
Swift
case division
-
Testing to see if two values are equal.
Declaration
Swift
case equalTo
-
Testing to see if two values are not equal.
Declaration
Swift
case notEqualTo
-
Testing to see if one value is less than another.
Declaration
Swift
case lessThan
-
Testing to see if one value is greater than another.
Declaration
Swift
case greaterThan
-
Testing to see if one value is less than or equal to another.
Declaration
Swift
case lessThanOrEqualTo
-
Testing to see if one value is greater than or equal to another.
Declaration
Swift
case greaterThanOrEqualTo
-
Testing to see if both values are
true
.Declaration
Swift
case and
-
Testing to see if either value is
true
.Declaration
Swift
case or
-
Casting a value to another type.
Declaration
Swift
case castTo
-
Perform a collations on both values.
Declaration
Swift
case collate
-
See if one value is like another.
Declaration
Swift
case like
-
See if one value is like another.
Declaration
Swift
case glob
-
Perform a RegEx operation on a value.
Declaration
Swift
case regexp
-
See if one value matches another.
Declaration
Swift
case match