Unlist a list - common lisp -


this question has answer here:

i have function returns this:

'(1 4 2 8) 

and want apply following type of functions it:

(name &rest) 

for example:

(max '(1 4 2 8)) 

produces error, but:

(max 1 4 2 8) 

does not. have "unlist" list. how may go doing that?

the form apply traditional way:

(apply 'max '(1 2 3 4)) ; => 4 

Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -