blob: 79e418131fa4a06dfaceee49e3eae61e8300fe03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
(ns
#^{:author "Vincent Foley",
:doc "Various functions for finding greatest and least values in a collection"}
clojure.contrib.greatest-least)
(defn- boundary
[cmp-fn f & args]
(when args
(reduce (fn [a b] (if (cmp-fn (compare (f b) (f a)))
b
a)) args)))
(defn greatest-by
"Return the argument for which f yields the greatest value."
[f & args]
(apply boundary pos? f args))
(defn greatest
"Return the greatest argument."
[& args]
(apply greatest-by identity args))
(defn least-by
"Return the argument for which f yields the smallest value."
[f & args]
(apply boundary neg? f args))
(defn least
"Return the smallest element."
[& args]
(apply least-by identity args))
(defn- boundary-all
[cmp-fn f & args]
(when args
(reduce (fn [a b]
(if (nil? a)
(cons b nil)
(let [x (compare (f b) (f (first a)))]
(cond (zero? x) (cons b a)
(cmp-fn x) (cons b nil)
:else a))))
nil
args)))
(defn all-greatest-by
"Return all the elements for which f yields the greatest value."
[f & args]
(apply boundary-all pos? f args))
(defn all-greatest
"Returns all the greatest elements."
[& args]
(apply all-greatest-by identity args))
(defn all-least-by
"Return all the elements for which f yields the least value."
[f & args]
(apply boundary-all neg? f args))
(defn all-least
"Returns all the least elements."
[& args]
(apply all-least-by identity args))
|