作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有点困惑,我连续尝试了 2 个小时,试图让这段代码正常工作,但我迷路了。
let DropColumn list =
if List.exists List.isEmpty list then "empty value"
else
list |> List.map List.tail
这给我一个错误error FS0001: The type 'string' does not match the type ''a list'
最佳答案
在函数式编程中处理失败的常用方法是使用 Result
类型,本质上定义为:
type Result<'T,'TError> =
| Ok of 'T
| Error of 'TError
要将其应用于您的代码,我们只需将 string
包装在带有 Error
的不愉快路径中,并将 list
从带有确定
:
let DropColumn list =
if List.exists List.isEmpty list then
Error "empty value"
else
list |> List.map List.tail |> Ok
然后你可以使用模式匹配来使用它:
match DropColumn myList with
| Ok newList ->
newList
| Error message ->
printfn "Error occurred: %s" message
[]
关于list - F# If 语句类型不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64189313/
我是一名优秀的程序员,十分优秀!