gpt4 book ai didi

F# |> (Pipeforward) 'block following let is unfinished' 错误

转载 作者:行者123 更新时间:2023-12-02 04:57:19 25 4
gpt4 key购买 nike

有人能帮我理解为什么下面的代码给我错误'Block following let is unfinished.期望一个表达式'? x 的值应该是一个字符串列表,这就是 F# 对它的看法。那么为什么 x 不成为一个字符串列表以供稍后在函数中使用?

let fxProper (str : string) (values : obj[,]) =
let x =
values
|> Seq.cast<obj>
|> Seq.filter (fun x -> not (x :? ExcelEmpty))
|> Seq.map string
|> Seq.toList

最佳答案

你需要对刚刚设置的x值做点什么

let fxProper (str : string) (values : obj[,]) =
let x =
values
|> Seq.cast<obj>
|> Seq.filter (fun x -> not (x :? ExcelEmpty))
|> Seq.map string
|> Seq.toList
x

应该可以。

这个

  let fxProper (str : string) (values : obj[,]) =
values
|> Seq.cast<obj>
|> Seq.filter (fun x -> not (x :? ExcelEmpty))
|> Seq.map string
|> Seq.toList

应该也可以。

关于F# |> (Pipeforward) 'block following let is unfinished' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17755631/

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