New files

This commit is contained in:
Justin Ethier 2016-02-17 03:16:52 -05:00
parent 4b3a929138
commit c5a69112ba
3 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# Case-Lambda Library
The `(scheme case-lambda)` library exports the `case-lambda` syntax.
- [`case-lambda`](#case-lambda)
#case-lambda

View file

@ -0,0 +1,23 @@
# Inexact Library
The `(scheme inexact)` library exports procedures which are typically only useful with inexact values.
- [`acos`](#acos)
- [`asin`](#asin)
- [`atan`](#atan)
- [`cos`](#cos)
- [`exp`](#exp)
- [`log`](#log)
- [`sin`](#sin)
- [`sqrt`](#sqrt)
- [`tan`](#tan)
#acos
#asin
#atan
#cos
#exp
#log
#sin
#sqrt
#tan

15
docs/api/scheme/lazy.md Normal file
View file

@ -0,0 +1,15 @@
# Lazy Library
The `(scheme lazy)` library exports procedures and syntax keywords for lazy evaluation.
- [`delay`](#delay)
- [`force`](#force)
- [`delay-force`](#delay-force)
- [`make-promise`](#make-promise)
- [`promise?`](#promise?)
#delay
#force
#delay-force
#make-promise
#promise?