On Sat, Feb 14, 2009 at 7:19 PM, Stephen C. Gilardi <squee...@mac.com> wrote:
>
> "set" is a hash set. It will never contain two items with equal hashes.

I don't think that's quite right.  I don't think it matters in this
case, but hash values aren't guaranteed unique.  A hash-map can have
two keys with the same hash value as long as = returns false.  Vectors
and lists with the same values evaluate as equal:

user=> (= '(1 2) [1 2])
true

--Chouser

--~--~---------~--~----~------------~-------~--~----~
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