<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=utf-8"><meta name=Generator content="Microsoft Word 15 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:#954F72;
        text-decoration:underline;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style></head><body lang=RU link=blue vlink="#954F72"><div class=WordSection1><p class=MsoNormal><span lang=EN-GB>If-without-else implies “empty-else”. It’s possible in monad context in “return ()” form. There are “when”, “unless” functions already. But in pure context “empty-else” can not imply empty result for “else” branch (what value should be used in “else” branch?). Empty-if exists in most languages in statements, i.e. under “IO a”, but not in expressions, so “a ? x : y” in C/C++, “x if a else y” in Python needs “else” branch. Non-exhaustive case is like “if ... then ... else undefined” IMHO.<o:p></o:p></span></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal><o:p> </o:p></p><div style='mso-element:para-border-div;border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0cm 0cm 0cm'><p class=MsoNormal style='border:none;padding:0cm'><b>From: </b><a href="mailto:blaze@ruddy.ru">Olga Ershova</a><br><b>Sent: </b>9 июля 2018 г. 21:55<br><b>To: </b><a href="mailto:johannes.waldmann@htwk-leipzig.de">Johannes Waldmann</a><br><b>Cc: </b><a href="mailto:haskell-cafe@haskell.org">Haskell Cafe</a><br><b>Subject: </b>Re: [Haskell-cafe] if-then without -else?</p></div><p class=MsoNormal><o:p> </o:p></p><div><p class=MsoNormal>In hindsight, maybe non-exhaustive case expression should be errors, not warnings. But then adding new constructor to the type could break existing code in multiple places, even if constructor is never used. Not everybody ready to pay this price.<br><br>For the "if" expressions, condition type is always Bool with two constructors, so enforcing totality looks like natural choice here.</p></div><p class=MsoNormal><o:p> </o:p></p><div><div><p class=MsoNormal>On Mon, Jul 9, 2018 at 2:40 PM Johannes Waldmann <<a href="mailto:johannes.waldmann@htwk-leipzig.de">johannes.waldmann@htwk-leipzig.de</a>> wrote:</p></div></div><p class=MsoNormal style='margin-left:4.8pt'>> Therefore (if False then a) would give an exception.<br><br>Yes. And the question is, why is possible to write<br>this program using "case" but not with "if".<br><br>For the first part (allow incomplete sets of patterns in "case"):<br><br>No matter how hard we try, Haskell is not a total language -<br>there'll always be programs that denote bottom,<br>by raising exceptions (e.g., from incomplete patterns),<br>or by non-termination - which cannot be prohibited statically<br>if we want both the language to be Turing complete,<br>and type inference to be decidable.<br><br>Cf. Agda, which is total, and therefore<br>has a coverage checker (for patterns)<br>as well as a termination checker.<br><br>But then the second part (do not allow incomplete "if")<br>appears to be an inconsistency in the design.<br><br>Mind you - I don't propose to change this.<br>The question is just about justification for the design.<br><br>Are there applications for an incomplete "if"?<br>I can imagine something like assertions,<br>as in "f x = if some-precondition x then some-computation x"<br>Of course, that's only helpful if the exception<br>contains source information.<br><br>- J.W.<br>_______________________________________________<br>Haskell-Cafe mailing list<br>To (un)subscribe, modify options or view archives go to:<br><a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe</a><br>Only members subscribed via the mailman list are allowed to post.</p><p class=MsoNormal><o:p> </o:p></p></div></body></html>