aboutsummaryrefslogtreecommitdiff
path: root/module/hnh/util.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/hnh/util.scm')
-rw-r--r--module/hnh/util.scm26
1 files changed, 14 insertions, 12 deletions
diff --git a/module/hnh/util.scm b/module/hnh/util.scm
index 1b5ceeab..e766cd0a 100644
--- a/module/hnh/util.scm
+++ b/module/hnh/util.scm
@@ -247,18 +247,20 @@
;; and the other items in some order.
;; Ord b => (list a) [, (b, b -> bool), (a -> b)] -> a, (list a)
(define*-public (find-extreme items optional: (< <) (access identity))
- (if (null? items)
- (error "Can't find extreme in an empty list")
- (fold-values
- (lambda (c min other)
- (if (< (access c) (access min))
- ;; Current stream head is smaller that previous min
- (values c (cons min other))
- ;; Previous min is still smallest
- (values min (cons c other))))
- (cdr items)
- ;; seeds:
- (car items) '())))
+ (when (null? items)
+ (scm-error 'wrong-type-arg "find-extreme"
+ "Can't find extreme in an empty list"
+ #f #f))
+ (fold-values
+ (lambda (c min other)
+ (if (< (access c) (access min))
+ ;; Current stream head is smaller that previous min
+ (values c (cons min other))
+ ;; Previous min is still smallest
+ (values min (cons c other))))
+ (cdr items)
+ ;; seeds:
+ (car items) '()))
(define*-public (find-min list optional: (access identity))
(find-extreme list < access))