OperatorNotation
public enum OperatorNotation : UInt8, Codable, Sendable
An operator notation.
-
The infix notation.
Declaration
Swift
case infix -
The prefix notation.
Declaration
Swift
case prefix -
The postfix notation.
Declaration
Swift
case postfix -
Creates an instance from
token‘s kind, or returnsniliftokendoes not represent an operator notation.Declaration
Swift
fileprivate init?(_ token: Token)
View on GitHub