<div dir="ltr"><div><div><div><div>Why not a functional syntax, i.e.<br><br></div>compose(f, g, h)<br><br></div>rather than f $ g $ h<br><br></div>Advantage: you can do it today.<br></div>Without need to convince Guido to add more line noise to the language.<br><div><br><a href="https://gist.github.com/stephanh42/6c9158c2470832a675fad7658048be9d">https://gist.github.com/stephanh42/6c9158c2470832a675fad7658048be9d</a><br><br></div><div>Stephan<br></div><div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">2017-10-26 13:06 GMT+02:00 Yan Pas <span dir="ltr"><<a href="mailto:yanp.bugz@gmail.com" target="_blank">yanp.bugz@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I've looked up this feature in haskell. Dollar sign operator is used to avoid parentheses.<div><br></div><div>Rationalle:</div><div>Python tends to use functions instead of methods ( e.g.<font face="monospace, monospace"> len([1,2,3])</font> instead of <font face="monospace, monospace">[1,2,3].len()</font> ). Sometimes the expression inside parentheses may become big  and using a lot of parentheses may tend to bad readability. I suggest the following syntax:</div><div><br></div><div><font face="monospace, monospace">len $ [1,2,3]</font></div><div><br></div><div>Functions map be also  chained:</div><div><br></div><div><font face="monospace, monospace">len $ list $ map(...)</font></div><div><br></div><div>This operator may be used for function composition too:</div><div><br></div><div><font face="monospace, monospace">foo = len $ set $</font></div><div>in the same as</div><div><font face="monospace, monospace">foo = lambda *as,**kas : len(set(*as, **kas))</font></div><div><font face="arial, helvetica, sans-serif">in current syntax</font></div><div><font face="arial, helvetica, sans-serif"><br></font></div><div><font face="arial, helvetica, sans-serif">Regards,</font></div><div><font face="arial, helvetica, sans-serif">Yan</font></div></div>
<br>______________________________<wbr>_________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org">Python-ideas@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/python-ideas" rel="noreferrer" target="_blank">https://mail.python.org/<wbr>mailman/listinfo/python-ideas</a><br>
Code of Conduct: <a href="http://python.org/psf/codeofconduct/" rel="noreferrer" target="_blank">http://python.org/psf/<wbr>codeofconduct/</a><br>
<br></blockquote></div><br></div>