Import
From HaskellWiki
(Difference between revisions)
(import/hide more than one symbol) |
m (typo) |
||
| Line 8: | Line 8: | ||
However, in more complicated cases, the module can be imported qualified, with or without hiding, and with or without renaming. Getting all of this straight in your head is quite tricky, so here is a table (lifted directly from the language reference manual) that roughly summarises the various possibilities: | However, in more complicated cases, the module can be imported qualified, with or without hiding, and with or without renaming. Getting all of this straight in your head is quite tricky, so here is a table (lifted directly from the language reference manual) that roughly summarises the various possibilities: | ||
| - | Suppose that module <hask>Mod</hask> exports | + | Suppose that module <hask>Mod</hask> exports three functions named <hask>x</hask>, <hask>y</hask> and <hask>z</hask>. In that case: |
{| | {| | ||
Revision as of 18:39, 13 February 2007
Theimport
import Data.Maybe
Data.Maybe
However, in more complicated cases, the module can be imported qualified, with or without hiding, and with or without renaming. Getting all of this straight in your head is quite tricky, so here is a table (lifted directly from the language reference manual) that roughly summarises the various possibilities:
Suppose that moduleMod
x
y
z
| Import command | What is brought into scope | Notes |
|---|---|---|
| import Mod | x, y, z, Mod.x, Mod.y, Mod.z | (By default, qualified and unqualified names.) |
| import Mod () | (Nothing!) | (Useful for only importing instances of typeclasses and nothing else) |
| import Mod (x,y) | x, y, Mod.x, Mod.y | (Only x y z |
| import qualified Mod | Mod.x, Mod.y, Mod.z | (Only qualified versions; no unqualified versions.) |
| import qualified Mod (x,y) | Mod.x, Mod.y | (Only x y |
| import Mod hiding (x,y) | z, Mod.z | ( x y |
| import qualified Mod hiding (x,y) | Mod.z | ( x y |
| import Mod as Foo | x, y, z, Foo.x, Foo.y, Foo.z | (Unqualified names as before. Qualified names use Foo Mod |
| import Mod as Foo (x,y) | x, y, Foo.x, Foo.y | (Only import x y |
| import qualified Mod as Foo | Foo.x, Foo.y, Foo.z | (Only qualified names, using new qualifier.) |
