如何影响多个要素列出?
假设我有一个列表,我想为此介绍两个元素。我可以这样做:
list = [3,4]
[1,2,3,4] == [1 | [2 |列表]
这很丑陋,不扩展到n
元素。
什么成语支持这一点?
Suppose I have a list and I want to cons two elements to it. I could do this:
list = [3,4]
[1,2,3,4] == [ 1 | [2 | list ] ]
This is ugly and doesn't extend to n
elements.
What idiom supports this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以添加多个头元素,并以逗号分隔。
Multiple head elements can be added comma-separated.