[Haskell-cafe] Re: Haskell and qualified identifiers

2004-12-08 Thread Henning Thielemann
On Wed, 8 Dec 2004, Duncan Coutts wrote: > I use HashTable like so: > > import Data.HashTable (HashTable) > import qualified Data.HashTable as HashTable If you give a generic name for the type, you can leave out the first 'import' and can stick completely to qualified identifiers, like HashTabl

[Haskell-cafe] Re: Haskell and qualified identifiers

2004-12-08 Thread Duncan Coutts
On Wed, 2004-12-08 at 17:04 +0100, Henning Thielemann wrote: > On Wed, 8 Dec 2004, Duncan Coutts wrote: > > > There are actually several options here, you can import modules only > > qualified, then every value from that module needs to be qualified. Some > > modules are designed to be used this w