在 Erlang 中替换元组中的键
我有一个元组列表,例如。 [{1,40},{2,45},{3,54}....{7,23}] 其中 1...7 是一周中的几天(通过查找 calendar:day_of_the_week() 计算)。 所以现在我想将列表更改为 [{Mon,40},{Tue,45},{Wed,54}...{Sun,23}]。 有没有比列表更简单的方法:keyreplace?
I have a list of tuples eg. [{1,40},{2,45},{3,54}....{7,23}] where 1...7 are days of the week (calculated by finding calendar:day_of_the_week()). So now I want to change the list to [{Mon,40},{Tue,45},{Wed,54}...{Sun,23}]. Is there an easier way to do it than lists:keyreplace?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
...或使用不同的语法:
其中:
该构造称为 列表理解,读作:
... or using a different syntax:
where:
The construct is called a list comprehension, and reads as:
简单的。 使用 httpd 模块中的 map 和一个方便的工具。
Simple. Use map and a handy tool from the httpd module.