mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
(Note that although Chibi's implementation of proper ephemerons is not complete, it still counts as an implementation of SRFI 124, which even allows a trivial implementation.)
4 lines
183 B
Scheme
4 lines
183 B
Scheme
(define-library (srfi 124)
|
|
(export make-ephemeron ephemeron? ephemeron-broken?
|
|
ephemeron-key ephemeron-datum)
|
|
(import (rename (chibi weak) (ephemeron-value ephemeron-datum))))
|