Clojure associative data type with heterogeneous key/value hash strategy? -


how having data type key (in maps) work.

for example:

(defn foo [a] (identity a))  (def  dict {1 "one", foo "foo", true "true", "etc." "ecetera", [1 2 3] "really?"}) 

which strategy used keys don't collide?

edit

the link in leon's comment has more value referenced question. however; accept has been answered.


Comments

Popular posts from this blog

php - Autoloader issue not returning Class -

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

C++ Program To Find Smallest and Largest Number In Array -