<div dir="ltr"><div class="gmail_extra">On Thu, Dec 10, 2015 at 8:35 AM, Dan Stromberg <span dir="ltr"><<a href="mailto:strombrg@gmail.com" target="_blank">strombrg@gmail.com</a>></span> wrote:<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">My thought was that going over the list of filenames+sizes and adding prefix hashes where available, would be easier to make robust, than attempting to get prefix hashes for all and zipping the results.<br><br><div class="gmail_extra"><div class="gmail_quote"><div>Is that not correct?<br></div></div></div></div></blockquote><div> </div><div>No, that's not correct. And the reason is that zipping is a pure computation (to use the jargon). <br><br>The errors can only come from file I/O.<br><br></div><div>Tupling incrementally and tupling all at once (namely, zipping) result in identical values.<br></div><div><br>Neither can fault unless the code goes out of its way into un-idiomatic, un-Haskelly territory.<br> <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div></div><div>Should I use a Maybe to deal with files that don't hash, so there will always be a one-to-one correspondence, allowing a zip?<br></div></div></div></div></blockquote><div><br></div><div>Yes, to be precise, instead of a function :: FilePath -> IO String that could possibly throw IO exceptions, you'd write a FilePath -> IO (Maybe String) that's exception-free because it catches them.<br><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div></div><div>Thanks. <br></div></div><span class="HOEnZb"><font color="#888888"></font></span></div></div></blockquote><div> </div><div>Anytime.<br><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><span class="HOEnZb"><font color="#888888"><br>-- <br><div>Dan Stromberg</div>
</font></span></div></div>
<br>_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
<br></blockquote></div><br></div></div>