F# - 在列表中创建 100 个对象 - 最实用且最惯用的方式
在 F# 中,创建或“更新”100 个新对象到列表中的最实用且最惯用的方法是什么。
我想我们可以使用 DateTime 作为示例对象。
In F# what is the most functional and idiomatic way of creating or "newing up" 100 new objects into a List.
I guess for an example we could use DateTime as an example object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者,作为列表表达式:
但我认为这不太惯用。
Alternatively, as a list expression:
But I think this is less idiomatic.
我会考虑使用,
因为您正在处理可变数据。
I would consider using
since you are working with mutable data.