
8 Jul
2013
8 Jul
'13
6:23 a.m.
On Mon, Jul 08, 2013 at 08:14:12PM +1000, Erik de Castro Lopo wrote:
module MyModule ( qualified module T ) import qualified Data.Text as T
so that any module which imports MyModule has access to the symbols of Data.Text under the quaified module name T.
Do you mean that after import MyModule that T.f is in scope? Won't that be confusing? What happens if you import MyModule as X ? Thanks Ian