blob: 7e2b81fd23fdea624d92060e5578f442482c361d (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
;; Generic interfaces for comparison operations
;; by Konrad Hinsen
;; last updated May 5, 2009
;; Copyright (c) Konrad Hinsen, 2009. All rights reserved. The use
;; and distribution terms for this software are covered by the Eclipse
;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
;; which can be found in the file epl-v10.html at the root of this
;; distribution. By using this software in any fashion, you are
;; agreeing to be bound by the terms of this license. You must not
;; remove this notice, or any other, from this software.
(ns
#^{:author "Konrad Hinsen"
:doc "Generic comparison interface
This library defines generic versions of = < > <= >= zero?
as multimethods that can be defined for any type. Of the
greater/less-than relations, types must minimally implement >."}
clojure.contrib.generic.comparison
(:refer-clojure :exclude [= < > <= >= zero?])
(:use [clojure.contrib.generic
:only (root-type nulary-type nary-type nary-dispatch)]))
;
; zero?
;
(defmulti zero?
"Return true of x is zero."
{:arglists '([x])}
type)
;
; Equality
;
(defmulti =
"Return true if all arguments are equal. The minimal implementation for type
::my-type is the binary form with dispatch value [::my-type ::my-type]."
{:arglists '([x] [x y] [x y & more])}
nary-dispatch)
(defmethod = root-type
[x] true)
(defmethod = nary-type
[x y & more]
(if (= x y)
(if (next more)
(recur y (first more) (next more))
(= y (first more)))
false))
;
; Greater-than
;
(defmulti >
"Return true if each argument is larger than the following ones.
The minimal implementation for type ::my-type is the binary form
with dispatch value [::my-type ::my-type]."
{:arglists '([x] [x y] [x y & more])}
nary-dispatch)
(defmethod > root-type
[x] true)
(defmethod > nary-type
[x y & more]
(if (> x y)
(if (next more)
(recur y (first more) (next more))
(> y (first more)))
false))
;
; Less-than defaults to greater-than with arguments inversed
;
(defmulti <
"Return true if each argument is smaller than the following ones.
The minimal implementation for type ::my-type is the binary form
with dispatch value [::my-type ::my-type]. A default implementation
is provided in terms of >."
{:arglists '([x] [x y] [x y & more])}
nary-dispatch)
(defmethod < root-type
[x] true)
(defmethod < [root-type root-type]
[x y]
(> y x))
(defmethod < nary-type
[x y & more]
(if (< x y)
(if (next more)
(recur y (first more) (next more))
(< y (first more)))
false))
;
; Greater-or-equal defaults to (complement <)
;
(defmulti >=
"Return true if each argument is larger than or equal to the following
ones. The minimal implementation for type ::my-type is the binary form
with dispatch value [::my-type ::my-type]. A default implementation
is provided in terms of <."
{:arglists '([x] [x y] [x y & more])}
nary-dispatch)
(defmethod >= root-type
[x] true)
(defmethod >= [root-type root-type]
[x y]
(not (< x y)))
(defmethod >= nary-type
[x y & more]
(if (>= x y)
(if (next more)
(recur y (first more) (next more))
(>= y (first more)))
false))
;
; Less-than defaults to (complement >)
;
(defmulti <=
"Return true if each arguments is smaller than or equal to the following
ones. The minimal implementation for type ::my-type is the binary form
with dispatch value [::my-type ::my-type]. A default implementation
is provided in terms of >."
{:arglists '([x] [x y] [x y & more])}
nary-dispatch)
(defmethod <= root-type
[x] true)
(defmethod >= [root-type root-type]
[x y]
(not (> x y)))
(defmethod <= nary-type
[x y & more]
(if (<= x y)
(if (next more)
(recur y (first more) (next more))
(<= y (first more)))
false))
;
; Implementations for Clojure's built-in types
;
(defmethod zero? java.lang.Number
[x]
(clojure.core/zero? x))
(defmethod = [Object Object]
[x y]
(clojure.core/= x y))
(defmethod > [Object Object]
[x y]
(clojure.core/> x y))
(defmethod < [Object Object]
[x y]
(clojure.core/< x y))
(defmethod >= [Object Object]
[x y]
(clojure.core/>= x y))
(defmethod <= [Object Object]
[x y]
(clojure.core/<= x y))
|