diff --git a/docs/api/scheme/lazy.md b/docs/api/scheme/lazy.md index 5eaa1e2e..a565b813 100644 --- a/docs/api/scheme/lazy.md +++ b/docs/api/scheme/lazy.md @@ -10,8 +10,24 @@ For more information see the [R7RS Scheme Specification](../../r7rs.p - [`make-promise`](#make-promise) - [`promise?`](#promise?) -#delay +#delay + + (delay {expression}) lazy library syntax + #force + + (force promise) + #delay-force + + (delay-force {expression}) lazy library syntax + #make-promise + + (make-promise obj) + #promise? + + (promise? obj) + +Returns `#t` if object is a promise, and `#f` otherwise.