<div dir="ltr">Let's do a 3-tuple because it doesn't require any contortions to find a real usecase.<div><br></div><div>type Lens s t a b = forall f. Functor f => (a -> f b) -> s -> f t</div><div><br></div><div>if you want to return two results from a lens, by picking f = (,,) result1 result2 you can pass it a function</div><div><br></div><div>a -> (result1, result2, b)</div><div><br></div><div>and you'll get a function</div><div><br></div><div>s -> (result1, result2, t)</div><div><br></div><div>which modifies the structure using the supplied function and gives back both results and the final answer.</div><div><br></div><div>You could of course make up a completely one-off data type with local instances and a ton of boilerplate.<br></div><div><br></div><div>You could play games with nesting tuples, and get worse operational behavior and have an extra bottom and indirection to concern yourself with.</div><div><br></div><div>Or you could just use the only possible instance we can put on a 3-tuple for Functor.</div><div><br></div><div>-Edward</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jan 19, 2016 at 3:32 PM,  <span dir="ltr"><<a href="mailto:amindfv@gmail.com" target="_blank">amindfv@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 dir="auto"><span class=""><div></div><div>El 19 ene 2016, a las 10:24, Alois Cochard <<a href="mailto:alois.cochard@gmail.com" target="_blank">alois.cochard@gmail.com</a>> escribió:<br><br></div><blockquote type="cite"><div><div dir="ltr"><div>+1<br></div><div><br></div>Agree for consistency, I can also see those instances as being useful in some specific context, even if I agree with Andreas that in general they should be discouraged (especially for newcomers).<div><br></div></div></div></blockquote><div><br></div></span><div>Can you give us an example where using e.g. the Functor instance for a 5-tuple would be the correct/best design decision?</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Tom</div></font></span><div><div class="h5"><div><br></div><br><blockquote type="cite"><div><div class="gmail_extra"><br><div class="gmail_quote">On 19 January 2016 at 09:20, Herbert Valerio Riedel <span dir="ltr"><<a href="mailto:hvriedel@gmail.com" target="_blank">hvriedel@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>On 2016-01-18 at 21:10:07 +0100, David Feuer wrote:<br>
> For some reason I really can't imagine, it seems the only tuple type<br>
> with a Functor instance is (,) a. I was astonished to find that<br>
><br>
> fmap (+1) (1,2,3)<br>
><br>
> doesn't work. Since this is *useful*, and there is *only one way to do<br>
> it*, I propose we add the following:<br>
><br>
> instance Functor ((,,) a b) where<br>
>   fmap f (a,b,c) = (a,b,f c)<br>
> instance Functor ((,,,) a b c) where<br>
>   fmap f (a,b,c,d) = (a,b,c,f d)<br>
> etc.<br>
<br>
</span>As stated elsewhere in this thread already, there is the issue about<br>
consistency. Here's a relevant section from the Haskell 2010 report[1]:<br>
<br>
> 6.1.4 Tuples<br>
><br>
> ...<br>
><br>
> However, every Haskell implementation must support tuples up to size<br>
> 15, together with the instances for Eq, Ord, Bounded, Read, and Show.<br>
<br>
IMO, we either have no `Functor` instances for tuples at all, or we have<br>
them for all tuples up to size 15. The current situations of having them<br>
defined only for 2-tuples is inconsistent.<br>
<br>
<br>
Cheers,<br>
  hvr<br>
<br>
 [1]: <a href="https://www.haskell.org/onlinereport/haskell2010/haskellch6.html#x13-1210006.1.4" rel="noreferrer" target="_blank">https://www.haskell.org/onlinereport/haskell2010/haskellch6.html#x13-1210006.1.4</a><br>
<div><div>_______________________________________________<br>
Libraries mailing list<br>
<a href="mailto:Libraries@haskell.org" target="_blank">Libraries@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div><div dir="ltr"><div><b>Λ\ois</b></div><div><div><a href="http://twitter.com/aloiscochard" target="_blank">http://twitter.com/aloiscochard</a></div><div><a href="http://github.com/aloiscochard" target="_blank">http://github.com/aloiscochard</a></div></div></div></div>
</div>
</div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>Libraries mailing list</span><br><span><a href="mailto:Libraries@haskell.org" target="_blank">Libraries@haskell.org</a></span><br><span><a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries</a></span><br></div></blockquote></div></div></div><br>_______________________________________________<br>
Libraries mailing list<br>
<a href="mailto:Libraries@haskell.org">Libraries@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries</a><br>
<br></blockquote></div><br></div>