过程和组合器之间的区别?
我已经使用Scheme和Common Lisp有一段时间了,但有一点关于命名法我从未得到过: 我知道组合器是没有自由变量的过程,但我很少看到它们被称为“组合器”,除了那些处理列表和其他序列的组合器。
我的认知正确吗?或者我还缺少“组合”的其他定义吗?
I've been using Scheme and Common Lisp for a while and there is one thing about nomenclature that I never got:
I know that combinators are procedures with no free variables, but I seldom see them being called "combinators", except for those that deal with lists and other sequences.
Is my perception correct? Or is there some other definition of "combination" that I'm missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有任何处理列表的函数,那么它就不再是真正的组合器,因为它需要使用列表函数。 “真正的”组合器实际上不使用任何自由标识符,甚至不使用 cons 等。(但该术语有时可以更宽松地使用。)
If you have any function that deals with lists, then it's no longer a real combinator, since it needs to use list functions. A "real" combinator is one that really uses no free identifiers, not even
cons
etc. (But the term can sometime be used more loosely.)