list to values
Posted: Sat Dec 08, 2012 2:20 am
Lets say I have a function which accepts 2 strings and three integers
However I have a list which contains these integer values.
(setq myvalues '(3 4 5))
Code: Select all
e.g
(myfunc "str1" "str2" 3 4 5)
(setq myvalues '(3 4 5))
Code: Select all
How can I convert the content of myvalues list to a set of values so that i can pass them to "myfunc" as arguments?