gpt4 book ai didi

f# - F# 库中是否存在 tee 函数?

转载 作者:行者123 更新时间:2023-12-03 22:42:24 24 4
gpt4 key购买 nike

...或在 FSharpx 中?

let tee sideEffect =
fun x ->
do sideEffect x
x

用法可能类似于
f >> tee (printfn "F returned: %A") >> g >> h

还是有另一种简单的方法来做到这一点?

谢谢!

最佳答案

ExtCore 包含一个名为 tap 的函数这正是你想要的。我主要使用它来检查 F#“管道”中的中间值(因此得名)。

例如:

[| 1;2;3 |]
|> Array.map (fun x -> x * 2)
|> tap (fun arr ->
printfn "The mapped array values are: %A" arr)
|> doOtherStuffWithArray

关于f# - F# 库中是否存在 tee 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26672033/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com