<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Jan 23, 2014 at 10:54 PM, Jakub Arnold <span dir="ltr"><<a href="mailto:darthdeus@gmail.com" target="_blank">darthdeus@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
                <div>*Main Network.HTTP.Conduit> :t withManager<br></div><div><div>withManager</div><div>  :: (monad-control-0.3.2.2:Control.Monad.Trans.Control.MonadBaseControl</div><div>        IO m,</div><div>      transformers-0.3.0.0:Control.Monad.IO.Class.MonadIO m) =></div>
<div>     (Manager</div><div>      -> resourcet-0.4.10:Control.Monad.Trans.Resource.Internal.ResourceT</div><div>           m a)</div><div>     -> m a</div></div>
                <div><div><br></div><div>The question is … how am I supposed to read these? It seems that they wrap around (maybe) 80 characters, which makes them unreadable … and the package prefixes also don’t really help.</div>
</div></blockquote><div><br></div><div>Import the modules named (usually ignoring any "Internal" or "Class" part), and their names will shorten. Since the names aren't in scope in ghci, it's being specific about where it found them.</div>
<div><br></div><div>  (MonadBaseControl IO m, MonadIO m) => (Manager ResourceT m a) -> m a</div><div><br></div><div>should be what you see with Control.Monad.Trans.Control, Control.Monad.Trans (because I happen to know the "public" export of MonadIO is there), and Control.Monad.Trans.Resource in scope.</div>
</div><div><br></div>-- <br><div dir="ltr"><div>brandon s allbery kf8nh                               sine nomine associates</div><div><a href="mailto:allbery.b@gmail.com" target="_blank">allbery.b@gmail.com</a>                                  <a href="mailto:ballbery@sinenomine.net" target="_blank">ballbery@sinenomine.net</a></div>
<div>unix, openafs, kerberos, infrastructure, xmonad        <a href="http://sinenomine.net" target="_blank">http://sinenomine.net</a></div></div>
</div></div>