cljs-dev

ClojureScript compiler & std lib dev, https://clojurescript.org/community/dev
2020-12-23T01:29:25.115Z

It is acceptable correctness-wise for things that are not equal to have the same hash value -- just leads to poor hashing performance if you have too many such objects with the same hash value in the same hashable collection simultaneously.

2020-12-23T01:30:03.115200Z

You would get terrible hashing performance if the hash of every object/value was 0, but it would not break equality semantics.