https://github.com/ar-nelson/scheme-flexvectors
Implementation of flexvectors (dynamic arrays) for Scheme - OUTDATED REPO
https://github.com/ar-nelson/scheme-flexvectors
arraylist data-structures r7rs r7rs-scheme scheme
Last synced: about 1 month ago
JSON representation
Implementation of flexvectors (dynamic arrays) for Scheme - OUTDATED REPO
- Host: GitHub
- URL: https://github.com/ar-nelson/scheme-flexvectors
- Owner: ar-nelson
- License: mit
- Created: 2020-10-07T04:11:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-14T03:30:49.000Z (about 5 years ago)
- Last Synced: 2025-03-15T00:12:55.384Z (about 1 year ago)
- Topics: arraylist, data-structures, r7rs, r7rs-scheme, scheme
- Language: Scheme
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flexvectors (SRFI 214)
> This is an outdated repository. The canonical repository for SRFI 214 is
> https://github.com/scheme-requests-for-implementation/srfi-214
An implementation of flexvectors (also known as dynamic arrays or arraylists) in
R7RS Scheme. Contains an R7RS library (`flexvectors.sld`) and a test suite
(`tests.scm`).
This implementation supports Gauche, Sagittarius, and Chibi. If all three of
these are installed (binaries `gosh`, `sash`, and `chibi-scheme`), running
`make` should run the test suite for all three. To run the test suite in
a specific Scheme, use `make test-gauche`, `make test-sagittarius`, or `make
test-chibi`.