Another way: suppose test-list -> (list 1 2 3)
`(max ~...@test-list) can translate the form to what you want so you can use eval or define a macro to handle it. On Jul 5, 11:38 am, Mike Meyer <mwm-keyword-googlegroups. [email protected]> wrote: > On Sun, 4 Jul 2010 20:21:22 -0700 (PDT) > > dennis <[email protected]> wrote: > > For example: > > (max 1 2 3) => 3 > > (max (list 1 2 3)) => (1 2 3) > > > How to convert (list 1 2 3) to arguments for function? > > Sounds like you want apply: > > (apply max (list 1 2 3)) => 3 > > <mike > -- > Mike Meyer <[email protected]> http://www.mired.org/consulting.html > Independent Network/Unix/Perforce consultant, email for more information. > > O< ascii ribbon campaign - stop html mail -www.asciiribbon.org -- 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
