opentofu/config/lang/ast/arithmetic_op.go

14 lines
247 B
Go
Raw Normal View History

package ast
// ArithmeticOp is the operation to use for the math.
type ArithmeticOp int
const (
ArithmeticOpInvalid ArithmeticOp = 0
ArithmeticOpAdd ArithmeticOp = iota
ArithmeticOpSub
ArithmeticOpMul
ArithmeticOpDiv
2015-02-26 17:17:37 -06:00
ArithmeticOpMod
)