如何使用 IList<>在 F# 中?
我有一个类型为 IList
的列表。模型 Effort 包含一个名为 Amount
的 float
。我想在 F# 中返回整个列表的 Amount
总和。如何实现这一目标?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个类型为 IList
的列表。模型 Effort 包含一个名为 Amount
的 float
。我想在 F# 中返回整个列表的 Amount
总和。如何实现这一目标?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
赞成
Seq.fold
、pipelinedSeq.fold
和 pipelinedSeq.sumBy
的答案(我最喜欢第三个)。也就是说,没有人提到
seq<'T>
是 F# 中IEnumerable
的名称,因此Seq
模块函数可以正常工作在任何IEnumerable
上,包括IList
。Upvoted the answers of
Seq.fold
, pipelinedSeq.fold
, and pipelinedSeq.sumBy
(I like the third one best).That said, no one has mentioned that
seq<'T>
is F#'s name forIEnumerable<T>
, and so theSeq
module functions work on anyIEnumerable
, includingIList
s.一个可能有趣的细节是您还可以避免使用类型注释。在sepp2k的代码中,需要指定
effort
值的类型为Effort
,因为编译器是从左到右处理代码右边(如果不知道类型,调用effort.Amount
就会失败)。您可以使用管道操作符来编写此代码:现在,编译器知道
effort
的类型,因为它知道它正在处理IList 类型的集合
。这是一个微小的改进,但我认为它非常好。efforts
。One detail that may be interesting is that you can also avoid using type annotations. In the code by sepp2k, you need to specify that the
effort
value has a typeEffort
, because the compiler is processing code from the left to the right (and it would fail on the calleffort.Amount
if it didn't know the type). You can write this using pipelining operator:Now, the compiler knows the type of
effort
because it knows that it is processing a collectionefforts
of typeIList<Effort>
. It's a minor improvement, but I think it's quite nice.