Operators

quot

Supported By

Syntax

expression quot expression

Each expression yields an integer, a number, or a complex.

Description

The quot operator evaluates to the truncated quotient of the given values.

Notes

If either given value is a complex, the evaluated value will be a complex. Otherwise, the evaluated value will be a number.

The expression x quot y is equivalent to trunc(x/y).

See Also

/, div, rem, mod