You night want to consider this: user=> (def m {:myself nil :yourself 'moo}) #'user/m user=> m {:myself nil, :yourself moo} user=> (def m2 (assoc m :myself m)) #'user/m2 user=> m {:myself nil, :yourself moo} user=> m2 {:myself {:myself nil, :yourself moo}, :yourself moo}
Now, if :myself' value were a ref ... :-) -- JFB --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---