Are there non-macro versions of and and or in Clojure?
Update: In this case I don't care about the short circuiting.
|
|
|
|||
@larsmans: It's close, but it returns true rather than the last-tested value. So you'd have to do something like (defn land [coll] (if (every? coll) (last coll))). Your answer is probably more efficient for a lot of tests because it avoids iterating through the collection twice. – intuited Apr 3 '11 at 20:33 |
|||
ok, but that's a two-pass version. It would be (every? identity coll), btw. – larsmans Apr 3 '11 at 20:36 |
|||
Aha, yes - every? and some are what I need.
clojuredocs.org/clojure_core/clojure.core/every_q
clojuredocs.org/clojure_core/clojure.core/some – pauldoo Apr 5 '11 at 7:27 |
|
Let
Or, slightly closer to the standard
And similarly for |
|||||||||||
|
|
This actually came up as a topic on clojure-dev recently. Rich Hickey ultimately concluded they should be added to core for 1.3 as every-pred and any-pred (logged as CLJ-729). I think further discussions there have led them to now be called every-pred (the and variant) and some-fn (the or variant). The final version was just recently committed to master. |
|||
|
|
If you mean functions: no, and they cannot be. The reason is that function forms always evaluate all their arguments before applying the function to their value. You do not want that here. |
|||||||||
|
|
Most cases where you want this there is a more idiomatic way to do it, but just an exercise, it is possible to defer evaluation by thunking. Thunk your expressions and give them to logical operators that evaluate the the thunk when needed, using the standard and/or:
Another Example:
|
||||
|
|