F# 中的函数应用运算符 ($)?

发布于 2024-12-01 07:25:33 字数 327 浏览 3 评论 0原文

假设我有这段代码,

let identifier = spaces_surrounded (many1Satisfy isLetter)

我想知道是否有任何本机 F# 函数允许我将其重构为

let identifier = spaces_surrounded $ many1Satisfy isLetter

诸如此类的东西

let ($) f1 f2 = f1 (f2)

(如果我没有记错的话,我的 Haskell 技能不太敏锐..)。

Let's say I have this code

let identifier = spaces_surrounded (many1Satisfy isLetter)

I was wondering if it there was any native F# function that allowed me to refactor it to

let identifier = spaces_surrounded $ many1Satisfy isLetter

that is, something such as

let ($) f1 f2 = f1 (f2)

(that is if I am not mistaken, my Haskell skills are not too sharp..).

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

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

发布评论

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

评论(1

小镇女孩 2024-12-08 07:25:33

标准的 F# 习惯用法是前向管道运算符 |>(如果您要重写的话)

let identifier = spaces_surrounded (many1Satisfy isLetter)

,因为

let identifier = many1Satisfy isLetter |> spaces_surrounded 

您也可以使用后向管道运算符 <|(如果您想保持原始订单,但这往往不太常见

let identifier = spaces_surrounded <| many1Satisfy isLetter

The standard F# idiom for this is the forward pipe operator |> were you would rewrite

let identifier = spaces_surrounded (many1Satisfy isLetter)

as

let identifier = many1Satisfy isLetter |> spaces_surrounded 

you can also use the backward pipe operator <| if you want to maintain the original order, but this tends to be a little less common

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