Merge pull request #98 from ofosos/docdocdoc

Rump documentation for srfi-9 and srfi-27
This commit is contained in:
Justin Ethier 2016-08-08 14:10:50 -04:00 committed by GitHub
commit aa55fcd038
2 changed files with 32 additions and 0 deletions

17
docs/api/srfi/27.md Normal file
View file

@ -0,0 +1,17 @@
# SRFI 27 - Sources of random bits
The `(srfi 27)` library provides sources of random bits. See the
[SRFI document](http://srfi.schemers.org/srfi-27/srfi-27.html) for
more information.
- `random-integer`
- `random-real`
- `default-random-source`
- `make-random-source`
- `random-source?`
- `random-source-state-ref`
- `random-source-state-set!`
- `random-source-randomize!`
- `random-source-pseudo-randomize!`
- `random-source-make-integers`
- `random-source-make-reals`

15
docs/api/srfi/9.md Normal file
View file

@ -0,0 +1,15 @@
# SRFI 9 - Defining record types
The `(srfi 9)` library provides support for defining record types. See
the [SRFI document](http://srfi.schemers.org/srfi-9/srfi-9.html) for
more information.
- `record?`
- `define-record-type`
- `register-simple-type`
- `make-type-predicate`
- `make-constructor`
- `make-getter`
- `make-setter`
- `slot-set!`
- `type-slot-offset`