Artifact 3639d2015bc3ab6b9b6a00da99641be02d347b7b:
- File data-structures.sls — part of check-in [edbaf21f17] at 2016-12-09 20:15:57 on branch trunk — added data-structures (user: aldo size: 553)
;; CHICKEN data-structures module #!r6rs (library (data-structures) (export identity conjoin disjoin constantly flip complement compose o list-of? each any? tail? intersperse butlast flatten chop join compress alist-update! alist-update alist-ref rassoc reverse-string-append ->string conc define-alias string-intersperse string-translate* string-chop sorted? ;merge merge! sort! sort topological-sort binary-search ) (import (scheme) (srfi private include)) (include/resolve () "data-structures.scm"))