本文介绍了在 Haskell 中使用 Maybe 类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用 Haskell 中的 Maybe 类型.我有一个键值元组的查找返回一个Maybe.如何访问由Maybe包装的数据?例如我想将Maybe包含的整数与另一个整数相加.
I'm trying to utilize the Maybe type in Haskell. I have a lookup for key, value tuples that returns a Maybe. How do I access the data that was wrapped by Maybe? For example I want to add the integer contained by Maybe with another integer.
推荐答案
或者你可以模式匹配:
case maybeValue of
Just value -> ...
Nothing -> ...
这篇关于在 Haskell 中使用 Maybe 类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!