- -- r7rs Definition
§

Kind
§

procedure;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(- z)
(- z_1 z_2 ...)
(/ z)
(/ z_1 z_2 ...)

With two or more arguments, these procedures return the difference or quotient of their arguments, associating to the left. With one argument, however, they return the additive or multiplicative inverse of their argument.

It is an error if any argument of / other than the first is an exact zero. If the first argument is an exact zero, an implementation may return an exact zero unless one of the other arguments is a NaN.

(- 3 4)                 ===>  -1
(- 3 4 5)               ===>  -6
(- 3)                   ===>  -3
(/ 3 4 5)               ===>   3/20
(/ 3)                   ===>   1/3

The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§