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

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

问题描述

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

 (defn addnums [ab] 
(apply +(flatten [ab])))

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

(addnums * args)
apply :

pre>

解决方案

b
$ b

 (apply addnums args)


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)

解决方案

You can just use apply again:

(apply addnums args)

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

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