<p dir="ltr">If ifThenElse is good for RebindableSyntax, then I'm +1 on that (but I've never played with that extension, so I don't really know). I'm -1 on (?). We already have bool, which tends to be rather more useful when partially applied.</p>
<div class="gmail_extra"><br><div class="gmail_quote">On Nov 16, 2016 9:43 PM, "winter" <<a href="mailto:drkoster@qq.com">drkoster@qq.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div dir="ltr" class="m_-8486897005054858839mw-geshi m_-8486897005054858839mw-content-ltr"><div class="m_-8486897005054858839haskell m_-8486897005054858839source-haskell"><pre class="m_-8486897005054858839de1">It seems this’s a very old request, see <a href="https://wiki.haskell.org/If-then-else" target="_blank">https://wiki.haskell.org/If-<wbr>then-else</a>. I’d like to see following:</pre><pre class="m_-8486897005054858839de1"><br></pre><pre class="m_-8486897005054858839de1"><span class="m_-8486897005054858839st0">ifThenElse :: Bool -> a -> a -> a
ifThenElse</span> True  x <span class="m_-8486897005054858839sy0">_</span> <span class="m_-8486897005054858839sy0">=</span> x
<span class="m_-8486897005054858839st0">ifThenElse False _ y = y</span></pre></div></div><div><br></div><div><div dir="ltr" class="m_-8486897005054858839mw-geshi m_-8486897005054858839mw-content-ltr"><div class="m_-8486897005054858839haskell m_-8486897005054858839source-haskell"><pre class="m_-8486897005054858839de1"><span class="m_-8486897005054858839kw1">infixr</span> <span class="m_-8486897005054858839nu0">1</span> <span class="m_-8486897005054858839sy0">?</span>
<span class="m_-8486897005054858839br0">(</span><span class="m_-8486897005054858839sy0">?</span><span class="m_-8486897005054858839br0">)</span> <span class="m_-8486897005054858839sy0">::</span> <span class="m_-8486897005054858839kw4">Bool</span> <span class="m_-8486897005054858839sy0">-></span> a <span class="m_-8486897005054858839sy0">-></span> a <span class="m_-8486897005054858839sy0">-></span> a
<span class="m_-8486897005054858839br0">(</span><span class="m_-8486897005054858839sy0">?</span><span class="m_-8486897005054858839br0">)</span> <span class="m_-8486897005054858839sy0">=</span> ifThenElse</pre><div><br></div></div></div><div><pre class="m_-8486897005054858839de1"><span class="m_-8486897005054858839kw1">in Date.Bool module, it will have advantages that:</span></pre><pre class="m_-8486897005054858839de1"><span class="m_-8486897005054858839kw1"><br></span></pre><pre class="m_-8486897005054858839de1"><span class="m_-8486897005054858839kw1">+ It’s more composable than syntax.  </span></pre><pre class="m_-8486897005054858839de1"><span class="m_-8486897005054858839kw1">+ Write (xxx ? yyy $ zzz) instead of (if xxx then yyy else zzz) is more consistent with (f . g $ x) style, and save key strokes.</span></pre><pre class="m_-8486897005054858839de1"><span class="m_-8486897005054858839kw1">+ In module with RebindableSyntax enabled, you can import </span>ifThenElse to get default behavior.</pre><pre class="m_-8486897005054858839de1"><br></pre><pre class="m_-8486897005054858839de1">Whether or not to be exported by Prelude is another question, but Data.Bool seems a good place to start with.</pre><pre class="m_-8486897005054858839de1"><br></pre><pre class="m_-8486897005054858839de1">Cheers~</pre><pre class="m_-8486897005054858839de1">Winter</pre></div></div></div><br>______________________________<wbr>_________________<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-<wbr>bin/mailman/listinfo/libraries</a><br>
<br></blockquote></div></div>