On Oct 12, 11:55 am, Angel Java Lopez <[email protected]> wrote: > I just discovered that maps support duplicated keys: > What is the rationale behind this behaviour?
No, maps don't support duplicate keys. What you're seeing is due to an implementation detail in how array-maps are created from literals. You'll notice that if you create a map with more than 8 keys there won't be any duplicate keys. Here's Rich's reply from last time this was mentioned: http://groups.google.com/group/clojure/msg/7e330411cd04ca71 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---
