Operator
Swift
public enum Operator: Character
Arithmetic operators valid within Value.operation(_:_:_:)
.
Topics
case plus
case plus
The regular arithmetic operator with normal precedence.
Declaration
Swift
case plus = "+"
case minus
case minus
The regular arithmetic operator with normal precedence.
Declaration
Swift
case minus = "-"
case times
case times
The regular arithmetic operator with normal precedence.
Declaration
Swift
case times = "*"
case dividedBy
case dividedBy
The regular arithmetic operator with normal precedence.
Declaration
Swift
case dividedBy = "/"