github.com/turtlemonvh/terraform@v0.6.9-0.20151204001754-8e40b6b855e8/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  )