blob: f1eaf3c2f365d732aa6a09d363d5b33f8057867b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
(define-library (srfi 228) ;; SRFI number reserved for, but not yet formally
;; assigned to this library.
(import (srfi 1)
(srfi 128)
(srfi 151)
(srfi 158))
(export make-wrapper-comparator
make-composed-comparator
compose-comparator)
(include "composing-comparators.scm"))
|