Common Lisp - 列出拆包? (类似于Python)

时间:2010-12-15 15:46:09

标签: python list lisp common-lisp iterable-unpacking

在Python中,假设定义了以下函数:

def function(a, b, c):
    ... do stuff with a, b, c ...

我可以使用Python的序列解包来使用该函数:

arguments = (1, 2, 3)
function(*arguments)

Common Lisp中是否存在类似的功能?如果我有一个功能:

(defun function (a b c)
    ... do stuff with a, b, c ...

如果我有3个元素的列表,我可以轻松地使用这3个元素作为函数的参数吗?

我目前的实施方式如下:

(destructuring-bind (a b c) (1 2 3)
    (function a b c))

有更好的方法吗?

2 个答案:

答案 0 :(得分:21)

使用apply功能:

(apply #'function arguments)

示例:

CL-USER> (apply #'(lambda (a b c) (+ a b c)) '(1 2 3))
6   

答案 1 :(得分:11)