当使用 Existential 类型时,我们必须使用模式匹配语法来提取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
有没有一种好方法可以使这样的代码可维护或将其包装起来以便我可以使用某种选择器?