导出数据族实例构造函数

问题描述 投票:0回答:1

SO是一场狗屎秀。感谢您的搭车。

haskell export type-families
1个回答
9
投票

使用

module Test (
    Bar(..)
) where

从关联的数据族中导出所有构造函数

Bar
。或者

module Test (
    Bar(UnitBar)
) where

仅导出单个构造函数。

您可以阅读GHC 文档中的相关部分了解更多详细信息。

© www.soinside.com 2019 - 2024. All rights reserved.