mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
More docs
This commit is contained in:
parent
cdf6426435
commit
ddd19b0c89
1 changed files with 15 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue