PrecedenceGroup
public enum PrecedenceGroup : String, Codable, Sendable
extension PrecedenceGroup: Comparable
An operator precedence group.
-
An operator associativity.
See moreDeclaration
Swift
public enum Associativity : Codable, Sendable -
Undocumented
Declaration
Swift
case assignment -
Undocumented
Declaration
Swift
case disjunction -
Undocumented
Declaration
Swift
case conjunction -
Undocumented
Declaration
Swift
case comparison -
Undocumented
Declaration
Swift
case fallback -
Undocumented
Declaration
Swift
case range -
Undocumented
Declaration
Swift
case addition -
Undocumented
Declaration
Swift
case multiplication -
Undocumented
Declaration
Swift
case shift -
Undocumented
Declaration
Swift
case exponentiation -
The binding power of the operators in the group.
Declaration
Swift
public var power: Int { get } -
The associativity of the operators in the group.
Declaration
Swift
public var associativity: Associativity { get } -
Declaration
Swift
public static func < (l: `Self`, r: `Self`) -> Bool
View on GitHub