We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c18f8a commit 32157feCopy full SHA for 32157fe
src/java_time/core.clj
@@ -170,10 +170,10 @@
170
([x] true)
171
([x y] (single-before? x y))
172
([x y & more]
173
- (if (before? x y)
+ (if (single-before? x y)
174
(if-some [n (next more)]
175
(recur y (first more) n)
176
- (before? y (first more)))
+ (single-before? y (first more)))
177
false)))
178
179
(defn after?
@@ -191,10 +191,10 @@
191
192
([x y] (single-after? x y))
193
194
- (if (after? x y)
+ (if (single-after? x y)
195
196
197
- (after? y (first more)))
+ (single-after? y (first more)))
198
199
200
(def ^{:arglists '([x] [x y] [x y & more])} not-after?
0 commit comments