Element
public indirect enum Element : Codable, CustomStringConvertible, Equatable
An ExpressionElement
can be either a op
(associated with a String
)
OR an argument
(associated with an ExpressionArgument
)
-
Undocumented
Declaration
Swift
case `operator`(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