DuroDBMS API
1.7
|
OPERATOR + (integer, integer) RETURNS integer;
OPERATOR + (float, float) RETURNS float;
The addition operator.
The sum of the two operands.
OPERATOR - (integer) RETURNS integer;
OPERATOR - (float) RETURNS float;
The unary minus operator.
The operand, sign inverted.
OPERATOR - (integer, integer) RETURNS integer;
OPERATOR - (float, float) RETURNS float;
The subtraction operator.
The difference of the two operands.
OPERATOR * (integer, integer) RETURNS integer;;
OPERATOR * (float, float) RETURNS float;
The multiplication operator.
The product of the two operands.
OPERATOR / (integer, integer) RETURNS integer;
OPERATOR / (float, float) RETURNS float;
The division operator.
The quotient of the operators.
OPERATOR % (integer, integer) RETURNS integer;
The modulo operator.
The remainder after division of the operators.
OPERATOR sqrt(x float) RETURNS float;
The square root operator.
OPERATOR abs(x integer) RETURNS integer;
OPERATOR abs(x float) RETURNS float;
The abs(absolute value) operator.
OPERATOR sin (x float) RETURNS float;
The sine operator.
OPERATOR cos(x float) RETURNS float;
The cosine operator.
OPERATOR atan(x float) RETURNS float;
The arc tangent operator.
OPERATOR atan2(y float, x float) RETURNS float;
The atan2 operator.
OPERATOR power(b float, x float) RETURNS float;
The power operator.
OPERATOR exp(x float) RETURNS float;
The exponential function operator.
OPERATOR ln(x float) RETURNS float;
The natural logarithm operator.
OPERATOR log(x float) RETURNS float;
The base 10 logarithm operator.