mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Began individual function docs
This commit is contained in:
parent
79e56e4716
commit
c925385305
1 changed files with 20 additions and 0 deletions
|
@ -55,14 +55,34 @@ See the [SRFI document](http://srfi.schemers.org/srfi-143/srfi-143.html) for mor
|
|||
|
||||
# fx-width
|
||||
|
||||
(fx-width)
|
||||
|
||||
Bound to the value `w` that specifies the implementation-defined fixnum integer range.
|
||||
|
||||
# fx-greatest
|
||||
|
||||
(fx-greatest)
|
||||
|
||||
Returns value of the largest representable fixnum.
|
||||
|
||||
# fx-least
|
||||
|
||||
(fx-least)
|
||||
|
||||
Returns value of the smallest representable fixnum.
|
||||
|
||||
# fixnum?
|
||||
|
||||
(fixnum? obj)
|
||||
|
||||
Returns `#t` if `obj` is an exact integer within the fixnum range, and `#f` otherwise.
|
||||
|
||||
# fx=?
|
||||
|
||||
(fx=? i j)
|
||||
|
||||
Semantically equivalent to `=`.
|
||||
|
||||
# fx<?
|
||||
|
||||
# fx>?
|
||||
|
|
Loading…
Add table
Reference in a new issue