Is this desired behavior for contains?

1:1 user=> (= [1 2] '(1 2))
true
1:2 user=> (contains? (hash-set [1 2]) '(1 2))
false
1:3 user=> (contains? (sorted-set [1 2]) '(1 2))
java.lang.ClassCastException: clojure.lang.PersistentList (repl-1:2)
1:4 user=> (contains? (hash-map [1 2] nil) '(1 2))
false
1:5 user=> (contains? (array-map [1 2] nil) '(1 2))
true

As far as I can figure all five of these should return true (the
exception is particularly weird).  Am I missing something here?

Thanks, Jason


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to 
clojure+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to