<div dir="ltr"><div>Thanks for the review.</div><div><br></div><div>Motivation is essentially to provide a low-friction way to write `if case / if case / if case` statements that are all matching on the same expression, much in the same way that `switch` offers a way to write `if / else if / else` statements against the same expression.</div><div><br></div><div> &gt; &gt; Only the *first* matching case is executed. Subsequent matching cases are not executed.</div><div> &gt; This is not unrelated to pattern matching, this is the expected behavior of every pattern matching algorithm.</div><div> </div><div>By that I meant that a string of `if case / if case / if case` statements, each individually matching against the same expression, would match and execute all 3 cases. A `switch` using the same 3 cases would execute only the first matching case. I took the &quot;only first case&quot; behavior to be a property of the *switch*, not of &quot;pattern matching&quot; in general? But perhaps I&#39;m using the wrong terminology.</div><div> </div><div> &gt; &gt; Allow filtering a single object through *multiple* cases of pattern matching, executing *all* cases that match.</div><div> &gt; Again, this is not pattern matching.</div><div><br></div><div>A switch can have multiple cases that &quot;would&quot; match and execute, if you were to comment out the successful case above them. Why would a hypothetical statement that executed *all* matching cases, rather than just the first case, not be pattern matching? It wouldn&#39;t be a `switch`, for sure, but it seems like it would be just as much &quot;pattern matching&quot; as an `if-case`.</div><div><br></div><div> &gt; This is not boilerplate!</div><div><br></div><div>An `if case / if case` pair would not have the same concept of a shared `else/default` case used by a `switch` or `if/else`, which is why I said it would not be needed. `if-case` does not require an else/default. (Perhaps boilerplate was the wrong word, and I definitely didn&#39;t mean to suggest that switches should no longer require `default:`).</div><div><br></div><div> &gt; A syntax that duplicates the existing if-case construct</div><div><br></div><div>Right, it would duplicate `if-case` just as `switch` duplicates `if-else`.</div><div><br></div><div>Cheers, thanks.</div><div><br></div><div>Peter</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Nov 18, 2017 at 12:19 AM, Robert Widmann <span dir="ltr">&lt;<a href="mailto:devteam.codafi@gmail.com" target="_blank">devteam.codafi@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto"><div><span></span></div><div>Having spent a lot of time with ‘switch’, I don’t understand any of the motivations or corresponding justifications for this idea.  Comments inline:<br><br><div id="m_8520758629169460191AppleMailSignature">~Robert Widmann </div><div><br>2017/11/17 15:06、Peter Kamb via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;<wbr>のメール:<br><br></div><span class=""><blockquote type="cite"><div><div dir="ltr"><div>## Title</div><div><br></div><div><div>Add `match` statement as `switch`-like syntax alternative to `if case` pattern matching</div></div><div><br></div><div>## Summary:</div><div><br></div><div>The syntax of the `switch` statement is familiar, succinct, elegant, and understandable. Swift pattern-matching tutorials use `switch` statements almost exclusively, with small sections at the end for alternatives such as `if case`.</div><div><br></div><div>However, the `switch` statement has several unique behaviors unrelated to pattern matching. Namely:  </div></div></div></blockquote><div><br></div><div><br></div><blockquote type="cite"><div><div dir="ltr"><div><br></div><div> - Only the *first* matching case is executed. Subsequent matching cases are not executed.</div></div></div></blockquote><div><br></div></span><div>This is not unrelated to pattern matching, this is the expected behavior of every pattern matching algorithm.  The intent is to compile a switch-case tree down to (conceptually) a (hopefully minimal) if-else tree.  You may be thinking of the behavior of switch in C and C-likes which is most certainly not pattern matching and includes behavior Swift has explicitly chosen to avoid like implicit fallthroughs.</div><span class=""><br><blockquote type="cite"><div><div dir="ltr"><div> - `default:` case is required, even for expressions where a default case does not make sense.</div></div></div></blockquote><div><br></div></span><div>Expression patterns may look to be covered “at first glance”, but the analysis required to prove that is equivalent to solving the halting problem in the general case.  Further, your proposed idea has absolutely nothing to do with this.</div><div><div class="h5"><br><blockquote type="cite"><div><div dir="ltr"><div><br></div><div>These behaviors prevent `switch` from being used as a generic match-patterns-against-a-<wbr>single-expression statement.</div><div><br></div><div>Swift should contain an equally-good pattern-matching statement that does not limit itself single-branch switching.</div><div><br></div><div>## Pitch:</div><div><br></div><div>Add a `match` statement with the same elegant syntax as the `switch` statement, but without any of the &quot;branch switching&quot; baggage.</div><div><br></div><div>```</div><div>match someValue {</div><div>case patternOne:</div><div>    always executed if pattern matches</div><div>case patternTwo:</div><div>    always executed if pattern matches</div><div>}</div><div>```</div><div><br></div><div>The match statement would allow a single value to be filtered through *multiple* cases of pattern-matching evaluation.</div><div><br></div><div>## Example:</div><div><br></div><div>```</div><div>struct TextFlags: OptionSet {</div><div>    let rawValue: Int</div><div>    static let italics = TextFlags(rawValue: 1 &lt;&lt; 1)</div><div>    static let bold    = TextFlags(rawValue: 1 &lt;&lt; 2)</div><div>}</div><div><br></div><div>let textFlags: TextFlags = [.italics, .bold]</div><div><br></div><div><br></div><div><br></div><div>// SWITCH STATEMENT</div><div>switch textFlags {</div><div>case let x where x.contains(.italics):</div><div>    print(&quot;italics&quot;)</div><div>case let x where x.contains(.bold):</div><div>    print(&quot;bold&quot;)</div><div>default:</div><div>    print(&quot;forced to include a default case&quot;)</div><div>}</div><div>// prints &quot;italics&quot;</div><div>// Does NOT print &quot;bold&quot;, despite .bold being set.</div><div><br></div><div><br></div><div><br></div><div>// MATCH STATEMENT</div><div>match textFlags {</div><div>case let x where x.contains(.italics):</div><div>    print(&quot;italics&quot;)</div><div>case let x where x.contains(.bold):</div><div>    print(&quot;bold&quot;)</div><div>}</div><div>// prints &quot;italics&quot;</div><div>// prints &quot;bold&quot;</div><div>```</div></div></div></blockquote><blockquote type="cite"><div><div dir="ltr"><div><br></div><div>## Enum vs. OptionSet</div><div><br></div><div>The basic difference between `switch` and `match` is the same conceptual difference between `Emum` and an `OptionSet` bitmask.</div><div><br></div><div>`switch` is essentially designed for enums: switching to a single logical branch based on the single distinct case represented by the enum.</div><div><br></div><div>`match` would be designed for OptionSet bitmasks and similar constructs. Executing behavior for *any and all* of the following cases and patterns that match.</div><div><br></div><div>The programmer would choose between `switch` or `match` based on the goal of the pattern matching. For example, pattern matching a String. `switch` would be appropriate for evaluating a String that represents the rawValue of an enum. But `match` would be more appropriate for evaluating a single input String against multiple unrelated-to-each-other regexes.</div><div><br></div><div>## Existing Alternatives</div><div><br></div><div>`switch` cannot be used to match multiple cases. There are several ways &quot;test a value against multiple patterns, executing behavior for each pattern that matches&quot;, but none are as elegant and understandable as the switch statement syntax.</div><div><br></div><div>Example using a string of independent `if case` statements:</div><div><br></div><div>```</div><div>if case let x = textFlags, x.contains(.italics) {</div><div>    print(&quot;italics&quot;)</div><div>}</div><div><br></div><div>if case let x = textFlags, x.contains(.bold) {</div><div>    print(&quot;bold&quot;)</div><div>}</div><div>```</div><div><br></div><div>## `match` statement benefits:</div><div><br></div><div> - Allow filtering a single object through *multiple* cases of pattern matching, executing *all* cases that match.</div></div></div></blockquote><div><br></div></div></div><div>Again, this is not pattern matching.</div><span class=""><br><blockquote type="cite"><div><div dir="ltr"><div><br></div><div> - A syntax that exactly aligns with the familiar, succinct, elegant, and understandable `switch` syntax.</div></div></div></blockquote><div><br></div></span><div>A syntax that duplicates the existing if-case construct which, I should note, takes the same number of lines and roughly the same number of columns to express as your match.  Even less, considering you unwrap in the if-case to exaggerate the example but not in the match.</div><span class=""><br><blockquote type="cite"><div><div dir="ltr"><div><br></div><div>- The keyword &quot;match&quot; highlights that pattern matching will occur. Would be even better than `switch` for initial introductions to pattern-matching.</div><div><br></div><div> - No need to convert between the strangely slightly different syntax of `switch` vs. `if case`, such as `case let x where x.contains(.italics):` to `if case let x = textFlags, x.contains(.italics) {`</div></div></div></blockquote><blockquote type="cite"><div><div dir="ltr"><div><br></div><div> - Bring the &quot;Expression Pattern&quot; to non-branch-switching contexts. Currently: &quot;An expression pattern represents the value of an expression. Expression patterns appear only in switch statement case labels.&quot;</div></div></div></blockquote><blockquote type="cite"><div><div dir="ltr"><div><br></div><div> - A single `match controlExpression` at the top rather than `controlExpression` being repeated (and possibly changed) in every single `if case` statement.</div><div><br></div><div> - Duplicated `controlExpression` is an opportunity for bugs such as typos or changes to the expression being evaluated in a *single* `if case` from the set, rather than all cases.</div><div><br></div><div> - Reduces to a pretty elegant single-case. This one-liner is an easy &quot;just delete whitespace&quot; conversion from standard multi-line switch/match syntax, whereas `if case` is not.</div><div><br></div><div>```</div><div> match value { case pattern:</div><div>    print(&quot;matched&quot;)</div><div>}</div><div>```</div><div><br></div><div> - Eliminate the boilerplate `default: break` case line for non-exhaustible expressions. Pretty much any non-Enum type being evaluated is non-exhaustible. (This is not the *main* goal of this proposal.)</div></div></div></blockquote><div><br></div></span><div>This is not boilerplate!</div><span class=""><br><blockquote type="cite"><div><div dir="ltr"><div><br></div><div>## Prototype</div><div><br></div><div>A prototype `match` statement can be created in Swift by wrapping a `switch` statement in a loop and constructing each case to match only on a given iteration of the loop:</div><div><br></div><div>```</div><div>match: for eachCase in 0...1 {</div><div>switch (eachCase, textFlags) {</div><div>case (0, let x) where x.contains(.italics):</div><div>    print(&quot;italics&quot;)</div><div>case (1, let x) where x.contains(.bold):</div><div>    print(&quot;bold&quot;)</div><div>default: break }</div><div>}</div><div><br></div><div>// prints &quot;italics&quot;</div><div>// prints &quot;bold&quot;</div><div>```</div><div><br></div><div>## Notes / Discussion:</div><div><br></div><div>- Other Languages - I&#39;ve been unable to find a switch-syntax non-&quot;switching&quot; pattern-match operator in any other language. If you know of any, please post!</div><div><br></div><div>- Should `match` allow a `default:` case? It would be easy enough to add one that functioned like switch&#39;s default case: run if *no other* cases were executed. But, conceptually, should a &quot;match any of these patterns&quot; statement have an else/default clause? I think it should, unless there are any strong opinions.</div><div><br></div><div>- FizzBuzz using proposed Swift `match` statement:</div><div><br></div><div>```</div><div>for i in 1...100 {</div><div>    var output = &quot;&quot;</div><div>    match 0 {</div><div>    case (i % 3): output += &quot;Fizz&quot;</div><div>    case (i % 3): output += &quot;Buzz&quot;</div><div>    default:      output = String(i)</div><div>    }</div><div>    </div><div>    print(output)</div><div>}</div><div><br></div><div>// `15` prints &quot;FizzBuzz&quot;</div><div>```</div></div></div></blockquote><div><br></div>for i in 1...100 {</span></div><div>  var output = “”</div><div>  output += (i % 3 == 0) ? “Fizz” : “”</div><div>  <span style="background-color:rgba(255,255,255,0)">output += (i % 5 == 0) ? “Buzz” : “”</span></div><div>  print(output.isEmpty ? “\(i)” : output)</div><div>}</div><div><br></div><div>If control flow should branch multiple times, <b>why not write just write it that way!</b></div><div><br><blockquote type="cite"><div><span>______________________________<wbr>_________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a></span><br></div></blockquote></div></div></blockquote></div><br></div>