On 9/13/16, 5:02 AM, "Erik Assum" <clojure@googlegroups.com on behalf of 
e...@assum.net> wrote:
> you’ll see that `get` accepts an additional argument, the default value, 
> which e.g. the keyword does not.

Just FYI, both the keyword first form and the map first form do accept an 
additional default argument:


boot.user> (:b {:a 1 :b 2} 3)
2
boot.user> (:b {:a 1 :c 3} 2)
2
boot.user> ({:a 1 :b 2} :b 3)
2
boot.user> ({:a 1 :c 3} :b 2)
2
boot.user>

Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood



-- 
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
Note that posts from new members are moderated - please be patient with your 
first post.
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
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to