* @package Mammut\DB\Sql */ interface iExprCalc extends iExpression { // arithmetic opertator types const OP_ADD = '+'; const OP_SUB = '-'; const OP_MULT = '*'; const OP_DIV = '/'; const OP_MOD = '%'; }