Re: Is there an index of symbols defined by the various SRFI's?
Ciprian Dorin Craciun 27 Mar 2018 18:56 UTC
On Tue, Mar 27, 2018 at 12:33 AM, Shiro Kawai <xxxxxx@gmail.com> wrote:
> Text dump is available at http://practical-scheme.net/vault/schemexref.txt
> Its a list of S-expr (<entry-name> . <string>), where the beginning of the
> <string> contains metadata in S-expr, followed by wiki content text.
> It'll be updated once a day. I'll try to parse and bulk import new srfis
> when I got time.
So I wrote some code to parse the symbols from the wiki dump provided by Shiro.
The output is available at:
https://github.com/cipriancraciun/scheme-srfi-index/blob/master/shiro-wiki.ss
The code (in Racket) that parses the input is at:
https://github.com/cipriancraciun/scheme-srfi-index/blob/master/shiro-wiki.rkt
(I haven't written actual Scheme/Lisp in some time, and my style is
more tailored for "seamless multi-programming-language context
switching", thus I apologize in advance for the code.) :)
Ciprian.