-
-- r7rs
Definition procedure
;
Procedure variants:
((number-zero) -> (number-zero))
number-zero
;number-zero
;((number-positive) -> (number-negative))
number-positive
;number-negative
;((number-negative) -> (number-positive))
number-negative
;number-positive
;((number-not-nan |2...|) -> (number))
number-not-nan
;...
-- at least 2 times;number
;((number |1...|) -> (number-nan))
number
;...
-- at least one time;number-nan
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(- 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 aNaN
.(- 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.