[Haskell-cafe] Re: Design your modules for qualified import

2008-06-07 Thread Peter Hercek
Andrew Coppin wrote: Until very recently, it was not at all clear to me that there is actually a very simple solution to this problem: import Text.ParserCombinators.Parsec as P Now I only have to write P.runPaser, which is much shorter. This fact probably needs to be mentioned more loudly -

Re: [Haskell-cafe] Re: Design your modules for qualified import

2008-06-06 Thread Henning Thielemann
On Fri, 6 Jun 2008, Achim Schneider wrote: Jan-Willem Maessen [EMAIL PROTECTED] wrote: There's one caveat: Always choose descriptive names, even if you are assuming that you will usually use a qualified import. The following are wonderful names, even though they conflict with the

Re: [Haskell-cafe] Re: Design your modules for qualified import

2008-06-06 Thread Jan-Willem Maessen
On Jun 6, 2008, at 12:54 PM, Henning Thielemann wrote: On Fri, 6 Jun 2008, Achim Schneider wrote: Jan-Willem Maessen [EMAIL PROTECTED] wrote: There's one caveat: Always choose descriptive names, even if you are assuming that you will usually use a qualified import. The following are