Haskell语言Maybe模块中函数fromJust的用法及代码示例。
用法类型:
Maybe a -> a
如果参数是Just,则返回Just值,否则将产生错误
示例1:
输入:
fromJust (lookup 3 [(1,'A'),(2,'B'),(3,'C')])
输出:
'C'
示例2:
输入:
fromJust (lookup 31 [(1,'A'),(2,'B'),(3,'C')])
输出:
Program error: Maybe.fromJust: Nothing
相关用法
注:本文由纯净天空筛选整理自 haskell fromJust。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。