struct InvalidConditionType
extension InvalidConditionType : Equatable, Sendable
The condition type is not valid.
-
The actual condition type.
Declaration
Swift
let actual: String
-
The expected condition type.
Declaration
Swift
let expected: String
-
The associated expression. Set null if the expression is not found.
Declaration
Swift
let expression: (any IdentifiableExpression)?
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
static func == (lhs: InvalidConditionType, rhs: InvalidConditionType) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.