Does not exist?
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 exist:
|
||||
|
|
|
According to my google search "not=" is the equivalent but I have zero personal familiarity with Clojure. |
|||
|
|
Amusingly, you could define != to be the same as not= if you really wanted:
|
|||||||||
|
|
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
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" |
|||
|