Element
public indirect enum Element : Codable, CustomStringConvertible, Equatable
extension Expression.Element: ValidExpressionArgument
An ExpressionElement
can be either a op
(associated with a String
)
OR an argument
(associated with an ExpressionArgument
)
-
Undocumented
Declaration
Swift
case op(Operator)
-
Undocumented
Declaration
Swift
case argument(Argument)
-
Declaration
Swift
public var description: String { get }
-
Declaration
Swift
public static func == (lhs: Expression.Element, rhs: Expression.Element) -> Bool
-
Declaration
Swift
public func encode(to encoder: Encoder) throws
-
Declaration
Swift
public init(from decoder: Decoder) throws
-
Undocumented
Declaration
Swift
public var expressionElements: [Expression.Element] { get }