将向量扩展为函数的参数 [英] Expand a vector into the arguments of a function

查看:16
本文介绍了将向量扩展为函数的参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法将值向量扩展为函数的参数?例如像这样:

Is there a way to expand a vector of values into the arguments of a function? e.g. something like this:

(defn addnums [a b]
  (apply + (flatten [a b])))

(def args [[1 2 3] [1 2 3]])

(addnums *args)

推荐答案

你可以再次使用apply:

(apply addnums args)

这篇关于将向量扩展为函数的参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆