当使用生存类型,我们必须使用模式匹配的语法用于提取forall
ED值。 我们不能用普通记录选择的功能。 GHC报告错误和使用模式匹配这一定义的建议yALL
:
{-# LANGUAGE ExistentialQuantification #-}
data ALL = forall a. Show a => ALL { theA :: a }
-- data ok
xALL :: ALL -> String
xALL (ALL a) = show a
-- pattern matching ok
-- ABOVE: heaven
-- BELOW: hell
yALL :: ALL -> String
yALL all = show $ theA all
-- record selector failed
forall.hs:11:19:
Cannot use record selector `theA' as a function due to escaped type variables
Probable fix: use pattern-matching syntax instead
In the second argument of `($)', namely `theA all'
In the expression: show $ theA all
In an equation for `yALL': yALL all = show $ theA all
我的一些数据需要超过5元。 这很难,如果我使用模式匹配,以保持的代码:
func1 (BigData _ _ _ _ elemx _ _) = func2 elemx
有没有好的方法使代码一样,维护或包起来,这样我可以使用某种选择的?