picrin/contrib/10.attribute/attr.scm

11 lines
255 B
Scheme
Raw Normal View History

2016-02-03 07:49:55 -05:00
(define-library (picrin base)
(export attribute)
2016-02-03 07:49:55 -05:00
2017-03-31 02:59:22 -04:00
(define attribute-table (make-ephemeron-table))
2016-02-03 07:49:55 -05:00
(define (attribute obj)
(or (attribute-table obj)
(let ((dict (make-dictionary)))
(attribute-table obj dict)
dict))))