如何使用 IList<>在 F# 中?

发布于 2024-08-27 18:35:11 字数 161 浏览 5 评论 0 原文

我有一个类型为 IList 的列表。模型 Effort 包含一个名为 Amountfloat。我想在 F# 中返回整个列表的 Amount 总和。如何实现这一目标?

I have a list of type IList<Effort>. The model Effort contains a float called Amount. I would like to return the sum of Amount for the whole list, in F#. How would this be achieved?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

跨年 2024-09-03 18:35:11
efforts |> Seq.sumBy (fun e -> e.Amount)
efforts |> Seq.sumBy (fun e -> e.Amount)
纸短情长 2024-09-03 18:35:11

赞成 Seq.fold、pipelined Seq.fold 和 pipelined Seq.sumBy 的答案(我最喜欢第三个)。

也就是说,没有人提到 seq<'T> 是 F# 中 IEnumerable 的名称,因此 Seq 模块函数可以正常工作在任何 IEnumerable 上,包括 IList

Upvoted the answers of Seq.fold, pipelined Seq.fold, and pipelined Seq.sumBy (I like the third one best).

That said, no one has mentioned that seq<'T> is F#'s name for IEnumerable<T>, and so the Seq module functions work on any IEnumerable, including ILists.

·深蓝 2024-09-03 18:35:11
Seq.fold (fun acc (effort: Effort) -> acc + effort.Amount) 0.0 efforts
Seq.fold (fun acc (effort: Effort) -> acc + effort.Amount) 0.0 efforts
围归者 2024-09-03 18:35:11

一个可能有趣的细节是您还可以避免使用类型注释。在sepp2k的代码中,需要指定effort值的类型为Effort,因为编译器是从左到右处理代码右边(如果不知道类型,调用 effort.Amount 就会失败)。您可以使用管道操作符来编写此代码:

efforts |> Seq.fold (fun acc effort -> acc + effort.Amount) 0.0  

现在,编译器知道 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 type Effort, because the compiler is processing code from the left to the right (and it would fail on the call effort.Amount if it didn't know the type). You can write this using pipelining operator:

efforts |> Seq.fold (fun acc effort -> acc + effort.Amount) 0.0  

Now, the compiler knows the type of effort because it knows that it is processing a collection efforts of type IList<Effort>. It's a minor improvement, but I think it's quite nice.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文