Quick guide to SRFIs (in progress)
Some quick info about selected SRFIs. I will add more as I learn (and maybe write) about them.
| SRFI # | Description | Supported by Chicken? |
|---|---|---|
| SRFI-1 | Lists, lists, lists. | Yes; built-in (use srfi-1) |
| SRFI-9 | Records (define-record-type) | Yes; built-in |
| SRFI-13 | String operations | Yes; built-in (use srfi-13) |
| SRFI-26 | Specializing parameters without currying (cut/cute) | Yes; built-in |
| SRFI-39 | Parameters | Yes; built-in |
| SRFI-42 | Eager comprehensions | Yes; available as egg (srfi-42) |
| SRFI-57 | Records (update of SRFI-9) | Sort of: available as egg (srfi-57) but "buggy and unmaintained" |
| SRFI-61 | Extended cond clause | Yes; built-in |