模块导出列表:如何导出导入的模块?

时间:2019-07-03 13:05:43

标签: haskell

我可以重新导出导入的模块,例如:

module My (
  module Another
, A
) where
import Another

但是此表单将仅导出AnotherA。如何在不枚举所有导出符号的情况下导出所有内容(全部!)和导入的模块?像没有列表的导出一样:

module My where
...

PS。最后一种形式不重新导​​出导入模块。有可能吗?

1 个答案:

答案 0 :(得分:5)

module My (module My, module Another) where
import Another

偷偷摸摸的吧?