
23 May
2009
23 May
'09
1:44 a.m.
Vasili I. Galchin wrote:
Hello,
I am working with some somewhat legacy code. I understand what "import qualified Blah as B" means but what does "import qualified Blah" mean? Is this a deprecated feature? I saw with user defined module as well as with "import qualified System" for example.
It just means that you must qualify the names with the module name (System). It's not deprecated, but most folks use the "import qualified ... as" version instead so that they can give a shorter name instead of using the full module name. -- Live well, ~wren