从列表中删除项目的 BIF 是什么
从列表中删除项目的 BIF 是什么?
What is the BIF to remove an item from a list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
从列表中删除项目的 BIF 是什么?
What is the BIF to remove an item from a list?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果要删除给定元素,则为 lists:delete/2< /a> (这不是 BIF)。
如果要删除给定位置的元素,可以执行以下操作:
如果要删除所有出现的元素,则:
If you want to remove a given element, it is lists:delete/2 (which is not a BIF).
If you want to remove an element at a given position, you can do something like:
If you want to remove all occurences, then:
NewList = CurrentList -- Element
当Element
是列表时,例如
NewList = CurrentList -- [{some_element}]
NewList = CurrentList -- Element
whenElement
is a liste.g.
NewList = CurrentList -- [{some_element}]