[Haskell-cafe] Re: List of exports of a module - are there alternatives?

2009-05-13 Thread MaurĂ­cio
I would like a keyword we could add to a single declaration, like: hidden a :: Int - Int a = (...) The 200 names is not the best example. It's more a question of proportion: if you export 5 declarations in a module with 20, it's OK, but if you export 19 declarations in a module of 20 maintenance

Re: [Haskell-cafe] Re: List of exports of a module - are there alternatives?

2009-05-13 Thread wren ng thornton
MaurĂ­cio wrote: I would like a keyword we could add to a single declaration, like: hidden a :: Int - Int a = (...) The 200 names is not the best example. It's more a question of proportion: if you export 5 declarations in a module with 20, it's OK, but if you export 19 declarations in a module