add rump documentation for srfi-27

This commit is contained in:
Mark Meyer 2016-08-08 19:44:18 +02:00
parent 8cc05744c6
commit b15eb1e559

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`