Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does not exist?

share|improve this question

5 Answers

up vote 17 down vote accepted

Does exist:

Clojure 1.2.0
user=> (not= 1 2)
true
user=> (not= 1 1)
false
share|improve this answer

In a lot of clojure code the ! char means that a function changes the state of something in a way you should watch out for. the clojure transients make heavy use of these

compare-and-set! 
alter-meta!
conj!
persistent!

check out http://clojure.github.com/clojure/ and search for the ! character. these functions usually come with caveats like "must be free of side effects"

share|improve this answer
sorry if that post was putting ! functions in a bad light. they are really useful and are actually safe to use :) – Arthur Ulfeldt Sep 8 '10 at 17:58
user=> (doc not=)
-------------------------
clojure.core/not=
([x] [x y] [x y & more])
  Same as (not (= obj1 obj2))
nil

Amusingly, you could define != to be the same as not= if you really wanted:

user=> (def != not=)
#'user/!=
user=> (!= 2 2)
false
user=> (!= 2 3)
true
share|improve this answer
7  
I suspect that clojure eschews the != syntax in order to maintain the idiomatic usage of the ! character to indicate functions that must take place inside a transaction. – Alex Stoddard Sep 7 '10 at 14:52
1  
Indeed. In Java and similar languages, ! means negation. If not= were !=, it would be grossly inconsistent. – Rayne Sep 7 '10 at 16:35

Is there some reason not= doesn't suit your purposes?

share|improve this answer

According to my google search "not=" is the equivalent but I have zero personal familiarity with Clojure.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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