I recently asked about composite keys in maps in clojure : How can you implement Composite keys in clojure? ...
The answer was that they work similar to java keys - if something overrides "equals", then it can be used effectively as a key.
I was wondering : Are there macros that allow us to override "equals" for custom data structures ? For example, say I wanted to use a Map as a key, and define uniqueness as "if this map contains 2 or more elements in common with another map, they are equal". How could I override the default behavior of a map ?
In java, I find this facility to be quite powerful when making high speed maps with thousands of beans as keys.