github.com/leeprovoost/terraform@v0.6.10-0.20160119085442-96f3f76118e7/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  )