Began individual function docs

This commit is contained in:
Justin Ethier 2017-08-08 18:54:58 -04:00
parent 79e56e4716
commit c925385305

View file

@ -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>?