我可以重新导出导入的模块,例如:
module My (
module Another
, A
) where
import Another
但是此表单将仅导出Another
和A
。如何在不枚举所有导出符号的情况下导出所有内容(全部!)和导入的模块?像没有列表的导出一样:
module My where
...
PS。最后一种形式不重新导出导入模块。有可能吗?
答案 0 :(得分:5)
module My (module My, module Another) where
import Another
偷偷摸摸的吧?