Operator

Swift
public enum Operator: Character

Arithmetic operators valid within Value.operation(_:_:_:).


Topics

case plus

The regular arithmetic operator with normal precedence.

Declaration
Swift
case plus = "+"

case minus

The regular arithmetic operator with normal precedence.

Declaration
Swift
case minus = "-"

case times

The regular arithmetic operator with normal precedence.

Declaration
Swift
case times = "*"

case dividedBy

The regular arithmetic operator with normal precedence.

Declaration
Swift
case dividedBy = "/"