uh, it's going to do what you expect... user=> (def % partial) #'user/% user=> (map #(inc %) [1 2 3]) (2 3 4)
On Tue, Jun 19, 2012 at 2:33 PM, Jim - FooBar(); <[email protected]> wrote: > On 19/06/12 19:32, Timothy Baldridge wrote: >> >> That works until you try to use the shorthand for anonymous functions: >> >> (map #(inc %) [1 2 3]) ; what's this going to do? >> >> Timothy > > > Thank you! :-) > > Jim > > > -- > 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 -- 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
