
10 Feb
2011
10 Feb
'11
11:26 p.m.
ckkashyap:
Hi, I noticed that even though I declare the type of a function in my code as� Data.ByteString.Lazy.ByteString ... when I check it out in ghci using :t, it shows this -�Data.ByteString.Lazy.Internal.ByteString Is this expected?
Yep, the 'Internal' module is where the type is defined, and then re-exported through the regular module. All is well. -- Don