More docs

This commit is contained in:
Justin Ethier 2021-03-29 23:03:48 -04:00
parent cdf6426435
commit ddd19b0c89

View file

@ -550,22 +550,32 @@ Raise an error with message `message` and one or more associated objects `obj`.
(even? num)
Return `#t` if `num` is even and `#f` if it is not. It is an error if `num` is not a number.
# every
(every pred lst)
Return `#t` if predicate function `pred` is true for every value of `lst`. Otherwise `#f` is returned.
# exact
(exact? num)
(exact num)
Return an exact representation of number `num`.
# exact-integer?
(exact-integer? num)
Returns `#t` if `num` is both exact and an integer; otherwise returns `#f`.
# exact?
(exact? num)
Return `#t` if `num` is exact.
# expt
(expt z1 z2)
@ -574,10 +584,14 @@ Raise an error with message `message` and one or more associated objects `obj`.
(features)
Return a list of feature identifiers which `cond-expand` treats as true.
# floor
(floor z)
Return an integer not larger than `z`.
# floor-quotient
(floor-quotient n m)