Rebol 函数和无限参数
rebol 中的 do 函数似乎接受无限的参数。我可以用我自己的函数来做到这一点(不使用参数块)吗?
The do function in rebol seems to accept unlimited arguments. Can I do that with my own function (without using a block of arguments) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无法定义具有可变数量参数的函数。此 Rebol 邮件列表线程中的最后一条消息 http://www.rebol .org/ml-display-thread.r?m=rmlDTXB 有解释。
do 函数也有一个参数:
It is not possible to define a function with a variable number of arguments. The last message in this Rebol Mailing List thread http://www.rebol.org/ml-display-thread.r?m=rmlDTXB has an explanation.
Also the do function takes a single argument:
你是对的,REBOL 中有可变参数函数,一个例子是 DO 函数。在 R2 中,甚至 MAKE 函数也是可变的。然而,函数规范方言不允许您定义自己的可变参数函数,并且甚至没有计划这样的功能。
You are right, that in REBOL there are variadic functions, an example being the DO function. In R2, even the MAKE function is variadic. Nevertheless, the function specification dialect does not allow you to define your own variadic function, and such a feature isn't even planned.