From c9253853053622120096b299ef44247746d7766c Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 8 Aug 2017 18:54:58 -0400 Subject: [PATCH] Began individual function docs --- docs/api/srfi/143.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/api/srfi/143.md b/docs/api/srfi/143.md index c521460d..a587168c 100644 --- a/docs/api/srfi/143.md +++ b/docs/api/srfi/143.md @@ -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?