vote up 8 vote down star
3

In C++ I'd write something like this:

if (a == something && b == anotherthing)
{
   foo();
}

Am I correct in thinking the Clojure equivalent is something like this:

(if (= a something)
    (if (= b anotherthing)
        (foo)))

Or is there another way to perform a logical "and" that I've missed? As I said the latter form seems to work correctly--I was just wondering if there's some simpler way to perform the logical and. And searching for "boolean" "logical" and "and" on the Clojure Google Group turned up too many results to be much use.

flag

Please use standard indentation for Lisp code, and don't put closing parentheses on their own lines. May I edit that? – Svante Feb 11 at 9:21
@Harleqin please feel free to fix this. I'm learning clojure and I would like to know established code formatting idioms. – Onorio Catenacci Feb 11 at 10:38
Okay. Note that the sub-parts of the if statement line up. This is the usual way. For some constructs (mostly when you have a "body"), one just increases indentation by two spaces. I don't know whether there is a specific style guide for Clojure, but you can try to extrapolate from Common Lisp. – Svante Feb 11 at 12:15
gigamonkeys.com/book/syntax-and-semantics.html/… -- Look at the part "Formatting Lisp Code" (towards the end). A good editor will help you with formatting; in fact, you can mostly see that you did something wrong when the automatic formatting doesn't meet your expectations. – Svante Feb 11 at 12:18
@Harlequin--thanks for fixing up the code and thanks for the pointer to the formatting docs. – Onorio Catenacci Feb 11 at 12:30

2 Answers

vote up 21 vote down check

In Common Lisp and Scheme

(and (= a something) (= b another) (foo))
link|flag
Short and sweet. – Allain Lalonde Feb 11 at 3:16
Ah, short circuiting is so nice, isn't it? – Cristián Romo Feb 11 at 3:40
Thanks Doug. I don't know why it never occurred to me to check for "and" on the Clojure website. Seems so bloody obvious now. – Onorio Catenacci Feb 11 at 3:41
You can also check from within clojure, e.g. (doc and). – Brian Carper Feb 12 at 22:25
vote up 12 vote down

In Common Lisp, the following is also a common idiom:

(when (and (= a something) (= b another))
  (foo))

Compare this to Doug Currie's answer using (and ... (foo)). The semantics are the same, but depending on the return type of (foo), most Common Lisp programmers would prefer one over the other:

  • Use (and ... (foo)) in cases where (foo) returns a boolean.

  • Use (when (and ...) (foo)) in cases where (foo) returns an arbitrary result.

An exception that proves the rule is code where the programmer knows both idioms, but intentionally writes (and ... (foo)) anyway. :-)

link|flag
Thank you. I'm learning clojure and that's very helpful. – Onorio Catenacci Feb 11 at 10:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.