[Haskell-cafe] Import hiding module

amindfv at gmail.com amindfv at gmail.com
Sat May 2 00:10:06 UTC 2015


It's possible to write e.g.

     module A (module A.B, x) where

To reexport everything from A.B

And we can

      import A hiding (x)

Is there a way to also

     import A hiding (module A.B)

?

Thanks


More information about the Haskell-Cafe mailing list