gpt4 book ai didi

haskell - 导出数据族实例构造函数

转载 作者:行者123 更新时间:2023-12-04 04:07:55 26 4
gpt4 key购买 nike

如何导出数据族实例的构造函数?我尝试了各种方法都没有成功(请参阅注释掉的代码):

module Test (
--Foo () (..)
--type Foo () (..)
--UnitBar
) where

class Foo a where
data Bar a :: *

instance Foo () where
data Bar () = UnitBar

我能够成功导出构造函数的唯一方法是在执行
module Test where
请注意缺少括号。这种方法的缺点是会留下太多信息!

最佳答案


module Test (
Bar(..)
) where

导出关联数据族中的所有构造函数 Bar .或者
module Test (
Bar(UnitBar)
) where

仅导出单个构造函数。

您可以阅读 relevant section in GHC's documentation更多细节。

关于haskell - 导出数据族实例构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19089039/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com