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
_______________________________________________
Haskell-Cafe mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to