github.com/bendemaree/terraform@v0.5.4-0.20150613200311-f50d97d6eee6/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 )