mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
Extracting API and r7rs compatibility
This commit is contained in:
parent
f25bce43c7
commit
c9cc8a1ce5
2 changed files with 35 additions and 35 deletions
34
docs/API.md
Normal file
34
docs/API.md
Normal file
|
@ -0,0 +1,34 @@
|
|||
|
||||
# R<sup>7</sup>RS Libraries
|
||||
|
||||
TODO: list each supported library here, and link to a separate page with that library's API as implemented by Cyclone
|
||||
|
||||
- scheme base
|
||||
- scheme char
|
||||
- scheme eval
|
||||
- scheme file
|
||||
- scheme load
|
||||
- scheme process-context
|
||||
- [scheme read](api/scheme/read.md)
|
||||
- scheme time
|
||||
- scheme write
|
||||
|
||||
# SRFI Support
|
||||
|
||||
Cyclone supports the following [Scheme Requests for Implementation (SRFI)](http://srfi.schemers.org/) libraries:
|
||||
|
||||
TODO: [SRFI 18 - Multithreading support](http://srfi.schemers.org/srfi-18/srfi-18.html)
|
||||
|
||||
# Cyclone-specific
|
||||
|
||||
## Built-ins
|
||||
Cyclone also supports several non-standard features:
|
||||
|
||||
- `system`
|
||||
- what else?
|
||||
|
||||
## Cyclone API
|
||||
|
||||
# FFI
|
||||
|
||||
TODO
|
|
@ -1,10 +1,6 @@
|
|||
# Features
|
||||
|
||||
This page summarizes the Scheme language features implemented by Cyclone.
|
||||
|
||||
# R<sup>7</sup>RS Compliance
|
||||
|
||||
This is the status of Scheme programming language features implemented from the [R<sup>7</sup>RS Scheme Specification](http://trac.sacrideo.us/wg/wiki):
|
||||
This is the status of Scheme programming language features implemented from the [R<sup>7</sup>RS Scheme Specification](r7rs.pdf):
|
||||
|
||||
Section | Status | Comments
|
||||
------- | ------ | ---------
|
||||
|
@ -41,33 +37,3 @@ Section | Status | Comments
|
|||
6.13 Input and output | Partial | Functions do not differentiate between binary and textual ports. Do not have support for input/output strings or bytevectors.
|
||||
6.14 System interface | Yes |
|
||||
|
||||
## R<sup>7</sup>RS Libraries
|
||||
|
||||
TODO: list each supported library here, and link to a separate page with that library's API as implemented by Cyclone
|
||||
|
||||
- scheme base
|
||||
- scheme char
|
||||
- scheme eval
|
||||
- scheme file
|
||||
- scheme load
|
||||
- scheme process-context
|
||||
- [scheme read](api/scheme/read.md)
|
||||
- scheme time
|
||||
- scheme write
|
||||
|
||||
# SRFI Support
|
||||
|
||||
Cyclone supports the following [Scheme Requests for Implementation (SRFI)](http://srfi.schemers.org/) libraries:
|
||||
|
||||
TODO: [SRFI 18 - Multithreading support](http://srfi.schemers.org/srfi-18/srfi-18.html)
|
||||
|
||||
# Cyclone-specific
|
||||
|
||||
Cyclone also supports several non-standard features:
|
||||
|
||||
- `system`
|
||||
- what else?
|
||||
|
||||
## FFI
|
||||
|
||||
TODO
|
Loading…
Add table
Reference in a new issue