struct InvalidArgumentCount
extension InvalidArgumentCount : Equatable, Sendable
The expression contains an invalid number of arguments.
-
Undocumented
Declaration
Swift
let `operator`: String
-
The associated expression. Set null if the expression is not found.
Declaration
Swift
let expression: (any IdentifiableExpression)?
-
The minimum number of operands allowed in the expression.
Declaration
Swift
let minOperands: UInt32
-
The maximum number of operands allowed in the expression.
Declaration
Swift
let maxOperands: UInt32
-
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: InvalidArgumentCount, rhs: InvalidArgumentCount) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.