What do you mean by currying in this context? Is there a way to do this in clojure apart from using partial?
On Saturday, August 17, 2013 10:04:23 AM UTC+10, Sean Corfield wrote: > > I went down the partial path for a long time but have moved more and > more toward currying and closures lately as it seems to produce > cleaner code - and this also seems to be the way Clojure/core have > moved with the reducers library and other places...? > > Sean > > On Fri, Aug 16, 2013 at 3:00 PM, Alan Shaw <node...@gmail.com<javascript:>> > wrote: > > (defn newgrid > > > > [m initialize qi qj]... > > > > > > and then (let [init (partial newgrid m initialize)]... > > > > > > Or else: > > > > > > (defn newgrid > > > > [m initialize] > > > > (fn [qi qj]... > > > > > > and then (let [init (newgrid m initialize)]... > > > > -- > > -- > > You received this message because you are subscribed to the Google > > Groups "Clojure" group. > > To post to this group, send email to clo...@googlegroups.com<javascript:> > > Note that posts from new members are moderated - please be patient with > your first post. > > To unsubscribe from this group, send email to > > clojure+u...@googlegroups.com <javascript:> > > 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+u...@googlegroups.com <javascript:>. > > For more options, visit https://groups.google.com/groups/opt_out. > > > > -- > Sean A Corfield -- (904) 302-SEAN > An Architect's View -- http://corfield.org/ > World Singles, LLC. -- http://worldsingles.com/ > > "Perfection is the enemy of the good." > -- Gustave Flaubert, French realist novelist (1821-1880) > -- -- 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/groups/opt_out.