<html><head><style>
body {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        padding:1em;
        margin:auto;
        background:#fefefe;
}

h1, h2, h3, h4, h5, h6 {
        font-weight: bold;
}

h1 {
        color: #000000;
        font-size: 28pt;
}

h2 {
        border-bottom: 1px solid #CCCCCC;
        color: #000000;
        font-size: 24px;
}

h3 {
        font-size: 18px;
}

h4 {
        font-size: 16px;
}

h5 {
        font-size: 14px;
}

h6 {
        color: #777777;
        background-color: inherit;
        font-size: 14px;
}

hr {
        height: 0.2em;
        border: 0;
        color: #CCCCCC;
        background-color: #CCCCCC;
    display: inherit;
}

p, blockquote, ul, ol, dl, li, table, pre {
        margin: 15px 0;
}

a, a:visited {
        color: #4183C4;
        background-color: inherit;
        text-decoration: none;
}

#message {
        border-radius: 6px;
        border: 1px solid #ccc;
        display:block;
        width:100%;
        height:60px;
        margin:6px 0px;
}

button, #ws {
        font-size: 12 pt;
        padding: 4px 6px;
        border-radius: 5px;
        border: 1px solid #bbb;
        background-color: #eee;
}

code, pre, #ws, #message {
        font-family: Monaco;
        font-size: 10pt;
        border-radius: 3px;
        background-color: #F8F8F8;
        color: inherit;
}

code {
        border: 1px solid #EAEAEA;
        margin: 0 2px;
        padding: 0 5px;
}

pre {
        border: 1px solid #CCCCCC;
        overflow: auto;
        padding: 4px 8px;
}

pre > code {
        border: 0;
        margin: 0;
        padding: 0;
}

#ws { background-color: #f8f8f8; }


.bloop_markdown table {
border-collapse: collapse;  
font-family: Helvetica, arial, freesans, clean, sans-serif;  
color: rgb(51, 51, 51);  
font-size: 15px; line-height: 25px;
padding: 0; }

.bloop_markdown table tr {
border-top: 1px solid #cccccc;
background-color: white;
margin: 0;
padding: 0; }
     
.bloop_markdown table tr:nth-child(2n) {
background-color: #f8f8f8; }

.bloop_markdown table tr th {
font-weight: bold;
border: 1px solid #cccccc;
margin: 0;
padding: 6px 13px; }

.bloop_markdown table tr td {
border: 1px solid #cccccc;
margin: 0;
padding: 6px 13px; }

.bloop_markdown table tr th :first-child, table tr td :first-child {
margin-top: 0; }

.bloop_markdown table tr th :last-child, table tr td :last-child {
margin-bottom: 0; }

.bloop_markdown blockquote{
  border-left: 4px solid #dddddd;
  padding: 0 15px;
  color: #777777; }
  blockquote > :first-child {
    margin-top: 0; }
  blockquote > :last-child {
    margin-bottom: 0; }

code, pre, #ws, #message {
    word-break: normal;
    word-wrap: normal;
}

hr {
    display: inherit;
}

.bloop_markdown :first-child {
    -webkit-margin-before: 0;
}

code, pre, #ws, #message {
    font-family: Menlo, Consolas, Liberation Mono, Courier, monospace;
}


.send { color:#77bb77; }
.server { color:#7799bb; }
.error { color:#AA0000; }</style></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="bloop_markdown"><p>This is clearly not a huge issue to solve, but a pitch is a pitch.</p>

<p>From Swift book we know this:</p>

<blockquote>
<p><strong>Switch Statements Must Be Exhaustive</strong></p>

<p>In Swift, every possible value of the control expression’s type must match the value of at least one pattern of a case. When this simply isn’t feasible (for instance, when the control expression’s type is Int), you can include a default case to satisfy the requirement.</p>
</blockquote>

<p>Even for enum values an optional <code>default</code> would mean that you don’t care about the other cases in your current switch, which basically again would be another useless nop.</p>

<pre><code class="swift">enum A {
    case a, b, c
}

var value = A.a

switch value {
     
case .a:
    value = A.b
     
default:
    () // I don't care
}

// Do something else  

switch value {
     
case .b:
    value = A.c
     
default:
    () // I don't care
}
</code></pre>

<p>Sure the error message is there to notify you that you might forget to handle some case, but how we handle that specific case is still up to us.</p>

<p>I’d really like to know what could be dangerous here when <code>default</code> would be optional.</p>

<p>I can’t tell if this would have some impact on the ABI or not. I’d say it’s additive because it doesn’t break any existing code but removes an existing restriction. </p>

<hr>

<p>The next thought might be an overkill (or maybe not):</p>

<p>How about making <code>default</code> optional everywhere + introducing a new attribute that allows the optional <code>default</code> on that particular enum, but by default every current existing enum should be handled exhaustively.</p>

<p>Bikeshedding:</p>

<pre><code class="swift">enum A {
    case a, b, c
}

var value = A.a

switch value {
     
case .a:
    value = A.b
     
} // Error: switch must be exhaustive, consider adding a default clause

// VS:

@discardableCase enum B {
    case d, e, f
}

let anotherValue = B.d

switch anotherValue {
     
case .d:
    // Do something
     
case .e:
    // Do something else
         
} // Just fine; We don't care here about `.f`
</code></pre>

<p></p></div><div class="bloop_original_html"><style>body{font-family:Helvetica,Arial;font-size:13px}</style><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;"><br></div> <br> <div id="bloop_sign_1475490682107675136" class="bloop_sign"><div style="font-family:helvetica,arial;font-size:13px">--&nbsp;<br>Adrian Zubarev<br>Sent with Airmail</div></div> <br><p class="airmail_on">Am 3. Oktober 2016 um 12:28:58, Rien (<a href="mailto:rien@balancingrock.nl">rien@balancingrock.nl</a>) schrieb:</p> <blockquote type="cite" class="clean_bq"><span><div><div></div><div>On non-enum values, yes I could support this. However I do not see this as a big enough issue.
<br>On enum values? no way….
<br>
<br>Btw this would get rid of:
<br>
<br>        let bytesSend = send(…) // returns an Int
<br>                 
<br>        switch bytesSend {
<br>        case Int.min ... -1: {…}
<br>        case 0: {…}
<br>        case 1 ... Int.max: {…}          
<br>        default: break // &lt;&lt;&lt;&lt;&lt;&lt; Imposible
<br>        }
<br>
<br>
<br>
<br>
<br>&gt; On 03 Oct 2016, at 12:14, Adrian Zubarev via swift-evolution &lt;swift-evolution@swift.org&gt; wrote:
<br>&gt;  
<br>&gt; I know that there is this note in Commonly Rejected Changes:
<br>&gt;  
<br>&gt; Remove support for default: in switch and just use case _:: default is widely used, case _ is too magical, and default is widely precedented in many C family languages.
<br>&gt; I really like to use the switch instead of if case for pattern matching, just because it’s neat block design. I do not want to remove default from switches because it’s a must have and powerful feature.
<br>&gt;  
<br>&gt; I’d like to know why switches must be exhaustive.  
<br>&gt;  
<br>&gt; switch someValue {
<br>&gt;       
<br>&gt; case …:
<br>&gt;     // Do something
<br>&gt;       
<br>&gt; case …:
<br>&gt;     // Do something else
<br>&gt;  
<br>&gt; default:   
<br>&gt;     () // useless nop; do nothing when no pattern matched
<br>&gt; }
<br>&gt;  
<br>&gt; // VS:
<br>&gt;  
<br>&gt; if case … {
<br>&gt;       
<br>&gt; } else if case … {
<br>&gt;       
<br>&gt; } else if case … {
<br>&gt;       
<br>&gt; } // No need for `else`
<br>&gt;  
<br>&gt; Can’t we make default optional, or at least on non-enum values?
<br>&gt;  
<br>&gt;  
<br>&gt;  
<br>&gt;  
<br>&gt; --  
<br>&gt; Adrian Zubarev
<br>&gt; Sent with Airmail
<br>&gt;  
<br>&gt; _______________________________________________
<br>&gt; swift-evolution mailing list
<br>&gt; swift-evolution@swift.org
<br>&gt; https://lists.swift.org/mailman/listinfo/swift-evolution
<br>
<br></div></div></span></blockquote></div><div class="bloop_markdown"><p></p></div></body></html>