summaryrefslogtreecommitdiffstats
path: root/srfi/228.sld
diff options
context:
space:
mode:
authorGravatar Daphne Preston-Kendal 2022-11-26 12:54:03 +0100
committerGravatar Daphne Preston-Kendal 2022-11-26 12:54:03 +0100
commitfa64d7d392230cfa7e2ec52ebb279d9913ccc736 (patch)
tree03c879545fd7f30a0b77ed13302d52d740c3411a /srfi/228.sld
parentcopy edit (diff)
Specify base cases and behaviours of each comparator function
Diffstat (limited to 'srfi/228.sld')
-rw-r--r--srfi/228.sld10
1 files changed, 10 insertions, 0 deletions
diff --git a/srfi/228.sld b/srfi/228.sld
new file mode 100644
index 0000000..b3cca89
--- /dev/null
+++ b/srfi/228.sld
@@ -0,0 +1,10 @@
+(define-library (srfi 228)
+ (import (scheme base)
+ (srfi 1)
+ (srfi 128)
+ (srfi 151))
+ (export make-wrapper-comparator
+ make-product-comparator
+ make-sum-comparator)
+
+ (include "composing-comparators.scm"))