Shantanu Kumar
unread,Jul 18, 2010, 10:58:53 AM7/18/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ClojureDocs.org Discussion Group
I'd like to suggest a "See also" section. For example, see this
snippet:
user=> (get {:a 1 :b 2} :a)
1
user=> (get {:a 1 :b 2} :c)
nil
user=> (find {:a 1 :b 2} :c)
nil
user=> (find {:a 1 :b 2} :a)
[:a 1]
"get" and "find" are related, the only difference being get returns
the value, and find returns the map-entry.
Regards,
Shantanu