github.com/ggiamarchi/terraform@v0.3.7-0.20150607194748-ed2a66a46a71/config/lang/ast/arithmetic_op.go (about) 1 package ast 2 3 // ArithmeticOp is the operation to use for the math. 4 type ArithmeticOp int 5 6 const ( 7 ArithmeticOpInvalid ArithmeticOp = 0 8 ArithmeticOpAdd ArithmeticOp = iota 9 ArithmeticOpSub 10 ArithmeticOpMul 11 ArithmeticOpDiv 12 ArithmeticOpMod 13 )