mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
14 lines
247 B
Go
14 lines
247 B
Go
package ast
|
|
|
|
// ArithmeticOp is the operation to use for the math.
|
|
type ArithmeticOp int
|
|
|
|
const (
|
|
ArithmeticOpInvalid ArithmeticOp = 0
|
|
ArithmeticOpAdd ArithmeticOp = iota
|
|
ArithmeticOpSub
|
|
ArithmeticOpMul
|
|
ArithmeticOpDiv
|
|
ArithmeticOpMod
|
|
)
|