mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-20 22:29:16 +02:00
Adding api doc stub
This commit is contained in:
parent
ef7adf298c
commit
22b38b863b
2 changed files with 28 additions and 0 deletions
|
@ -45,6 +45,16 @@ Section | Status | Comments
|
||||||
|
|
||||||
TODO: list each supported library here, and link to a separate page with that library's API as implemented by Cyclone
|
TODO: list each supported library here, and link to a separate page with that library's API as implemented by Cyclone
|
||||||
|
|
||||||
|
base
|
||||||
|
char
|
||||||
|
eval
|
||||||
|
file
|
||||||
|
load
|
||||||
|
process-context
|
||||||
|
[scheme read](docs/api/scheme/read.md)
|
||||||
|
time
|
||||||
|
write
|
||||||
|
|
||||||
# SRFI Support
|
# SRFI Support
|
||||||
|
|
||||||
Cyclone supports the following [Scheme Requests for Implementation (SRFI)](http://srfi.schemers.org/) libraries:
|
Cyclone supports the following [Scheme Requests for Implementation (SRFI)](http://srfi.schemers.org/) libraries:
|
||||||
|
|
18
docs/api/scheme/read.md
Normal file
18
docs/api/scheme/read.md
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Read Library
|
||||||
|
|
||||||
|
The `(scheme read)` library provides procedures for reading Scheme objects.
|
||||||
|
|
||||||
|
- [`read`](#read)
|
||||||
|
- `read-all`
|
||||||
|
|
||||||
|
#read
|
||||||
|
|
||||||
|
`(read)`
|
||||||
|
`(read port)`
|
||||||
|
|
||||||
|
#read-all
|
||||||
|
|
||||||
|
`(read)`
|
||||||
|
`(read port)`
|
||||||
|
|
||||||
|
Read all objects from a port and return them as a list.
|
Loading…
Add table
Reference in a new issue