<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">Aha! I found a proposal Erica put forth about this a year and a while ago—</div><div class=""><br class=""></div><a href="https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160704/023955.html" class="">https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160704/023955.html</a><div class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Nov 18, 2017, at 11:30 AM, Peter Kamb &lt;<a href="mailto:peterkamb@gmail.com" class="">peterkamb@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="auto" class="">&nbsp;&gt; alternative to `fallthrough` that would continue matching cases</div><div dir="auto" class=""><br class=""></div><div dir="auto" class="">Yes, that would be interesting to look into. Do you have any references or remember what the proposed keyword was called? Do any other languages have this feature?</div><div dir="auto" class=""><br class=""></div><div dir="auto" class=""><br class=""></div><div class=""><br class=""><div class="gmail_quote"><div class="">On Sat, Nov 18, 2017 at 10:53 AM Kevin Nattinger &lt;<a href="mailto:swift@nattinger.net" class="">swift@nattinger.net</a>&gt; wrote:<br class=""></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">There have been earlier suggestions for an alternative to `fallthrough` that would continue matching cases; I think that is much more likely to get support than a whole new construct with only a subtle difference from an existing one—would that be an acceptable alternative to you?<br class="">
<br class="">
&gt; On Nov 17, 2017, at 12:06 PM, Peter Kamb via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt; wrote:<br class="">
&gt;<br class="">
&gt; ## Title<br class="">
&gt;<br class="">
&gt; Add `match` statement as `switch`-like syntax alternative to `if case` pattern matching<br class="">
&gt;<br class="">
&gt; ## Summary:<br class="">
&gt;<br class="">
&gt; 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`.<br class="">
&gt;<br class="">
&gt; However, the `switch` statement has several unique behaviors unrelated to pattern matching. Namely:<br class="">
&gt;<br class="">
&gt;&nbsp; - Only the *first* matching case is executed. Subsequent matching cases are not executed.<br class="">
&gt;&nbsp; - `default:` case is required, even for expressions where a default case does not make sense.<br class="">
&gt;<br class="">
&gt; These behaviors prevent `switch` from being used as a generic match-patterns-against-a-single-expression statement.<br class="">
&gt;<br class="">
&gt; Swift should contain an equally-good pattern-matching statement that does not limit itself single-branch switching.<br class="">
&gt;<br class="">
&gt; ## Pitch:<br class="">
&gt;<br class="">
&gt; Add a `match` statement with the same elegant syntax as the `switch` statement, but without any of the "branch switching" baggage.<br class="">
&gt;<br class="">
&gt; ```<br class="">
&gt; match someValue {<br class="">
&gt; case patternOne:<br class="">
&gt;&nbsp; &nbsp; &nbsp;always executed if pattern matches<br class="">
&gt; case patternTwo:<br class="">
&gt;&nbsp; &nbsp; &nbsp;always executed if pattern matches<br class="">
&gt; }<br class="">
&gt; ```<br class="">
&gt;<br class="">
&gt; The match statement would allow a single value to be filtered through *multiple* cases of pattern-matching evaluation.<br class="">
&gt;<br class="">
&gt; ## Example:<br class="">
&gt;<br class="">
&gt; ```<br class="">
&gt; struct TextFlags: OptionSet {<br class="">
&gt;&nbsp; &nbsp; &nbsp;let rawValue: Int<br class="">
&gt;&nbsp; &nbsp; &nbsp;static let italics = TextFlags(rawValue: 1 &lt;&lt; 1)<br class="">
&gt;&nbsp; &nbsp; &nbsp;static let bold&nbsp; &nbsp; = TextFlags(rawValue: 1 &lt;&lt; 2)<br class="">
&gt; }<br class="">
&gt;<br class="">
&gt; let textFlags: TextFlags = [.italics, .bold]<br class="">
&gt;<br class="">
&gt;<br class="">
&gt;<br class="">
&gt; // SWITCH STATEMENT<br class="">
&gt; switch textFlags {<br class="">
&gt; case let x where x.contains(.italics):<br class="">
&gt;&nbsp; &nbsp; &nbsp;print("italics")<br class="">
&gt; case let x where x.contains(.bold):<br class="">
&gt;&nbsp; &nbsp; &nbsp;print("bold")<br class="">
&gt; default:<br class="">
&gt;&nbsp; &nbsp; &nbsp;print("forced to include a default case")<br class="">
&gt; }<br class="">
&gt; // prints "italics"<br class="">
&gt; // Does NOT print "bold", despite .bold being set.<br class="">
&gt;<br class="">
&gt;<br class="">
&gt;<br class="">
&gt; // MATCH STATEMENT<br class="">
&gt; match textFlags {<br class="">
&gt; case let x where x.contains(.italics):<br class="">
&gt;&nbsp; &nbsp; &nbsp;print("italics")<br class="">
&gt; case let x where x.contains(.bold):<br class="">
&gt;&nbsp; &nbsp; &nbsp;print("bold")<br class="">
&gt; }<br class="">
&gt; // prints "italics"<br class="">
&gt; // prints "bold"<br class="">
&gt; ```<br class="">
&gt;<br class="">
&gt; ## Enum vs. OptionSet<br class="">
&gt;<br class="">
&gt; The basic difference between `switch` and `match` is the same conceptual difference between `Emum` and an `OptionSet` bitmask.<br class="">
&gt;<br class="">
&gt; `switch` is essentially designed for enums: switching to a single logical branch based on the single distinct case represented by the enum.<br class="">
&gt;<br class="">
&gt; `match` would be designed for OptionSet bitmasks and similar constructs. Executing behavior for *any and all* of the following cases and patterns that match.<br class="">
&gt;<br class="">
&gt; 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.<br class="">
&gt;<br class="">
&gt; ## Existing Alternatives<br class="">
&gt;<br class="">
&gt; `switch` cannot be used to match multiple cases. There are several ways "test a value against multiple patterns, executing behavior for each pattern that matches", but none are as elegant and understandable as the switch statement syntax.<br class="">
&gt;<br class="">
&gt; Example using a string of independent `if case` statements:<br class="">
&gt;<br class="">
&gt; ```<br class="">
&gt; if case let x = textFlags, x.contains(.italics) {<br class="">
&gt;&nbsp; &nbsp; &nbsp;print("italics")<br class="">
&gt; }<br class="">
&gt;<br class="">
&gt; if case let x = textFlags, x.contains(.bold) {<br class="">
&gt;&nbsp; &nbsp; &nbsp;print("bold")<br class="">
&gt; }<br class="">
&gt; ```<br class="">
&gt;<br class="">
&gt; ## `match` statement benefits:<br class="">
&gt;<br class="">
&gt;&nbsp; - Allow filtering a single object through *multiple* cases of pattern matching, executing *all* cases that match.<br class="">
&gt;<br class="">
&gt;&nbsp; - A syntax that exactly aligns with the familiar, succinct, elegant, and understandable `switch` syntax.<br class="">
&gt;<br class="">
&gt; - The keyword "match" highlights that pattern matching will occur. Would be even better than `switch` for initial introductions to pattern-matching.<br class="">
&gt;<br class="">
&gt;&nbsp; - 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) {`<br class="">
&gt;<br class="">
&gt;&nbsp; - Bring the "Expression Pattern" to non-branch-switching contexts. Currently: "An expression pattern represents the value of an expression. Expression patterns appear only in switch statement case labels."<br class="">
&gt;<br class="">
&gt;&nbsp; - A single `match controlExpression` at the top rather than `controlExpression` being repeated (and possibly changed) in every single `if case` statement.<br class="">
&gt;<br class="">
&gt;&nbsp; - 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.<br class="">
&gt;<br class="">
&gt;&nbsp; - Reduces to a pretty elegant single-case. This one-liner is an easy "just delete whitespace" conversion from standard multi-line switch/match syntax, whereas `if case` is not.<br class="">
&gt;<br class="">
&gt; ```<br class="">
&gt;&nbsp; match value { case pattern:<br class="">
&gt;&nbsp; &nbsp; &nbsp;print("matched")<br class="">
&gt; }<br class="">
&gt; ```<br class="">
&gt;<br class="">
&gt;&nbsp; - 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.)<br class="">
&gt;<br class="">
&gt; ## Prototype<br class="">
&gt;<br class="">
&gt; 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:<br class="">
&gt;<br class="">
&gt; ```<br class="">
&gt; match: for eachCase in 0...1 {<br class="">
&gt; switch (eachCase, textFlags) {<br class="">
&gt; case (0, let x) where x.contains(.italics):<br class="">
&gt;&nbsp; &nbsp; &nbsp;print("italics")<br class="">
&gt; case (1, let x) where x.contains(.bold):<br class="">
&gt;&nbsp; &nbsp; &nbsp;print("bold")<br class="">
&gt; default: break }<br class="">
&gt; }<br class="">
&gt;<br class="">
&gt; // prints "italics"<br class="">
&gt; // prints "bold"<br class="">
&gt; ```<br class="">
&gt;<br class="">
&gt; ## Notes / Discussion:<br class="">
&gt;<br class="">
&gt; - Other Languages - I've been unable to find a switch-syntax non-"switching" pattern-match operator in any other language. If you know of any, please post!<br class="">
&gt;<br class="">
&gt; - Should `match` allow a `default:` case? It would be easy enough to add one that functioned like switch's default case: run if *no other* cases were executed. But, conceptually, should a "match any of these patterns" statement have an else/default clause? I think it should, unless there are any strong opinions.<br class="">
&gt;<br class="">
&gt; - FizzBuzz using proposed Swift `match` statement:<br class="">
&gt;<br class="">
&gt; ```<br class="">
&gt; for i in 1...100 {<br class="">
&gt;&nbsp; &nbsp; &nbsp;var output = ""<br class="">
&gt;&nbsp; &nbsp; &nbsp;match 0 {<br class="">
&gt;&nbsp; &nbsp; &nbsp;case (i % 3): output += "Fizz"<br class="">
&gt;&nbsp; &nbsp; &nbsp;case (i % 3): output += "Buzz"<br class="">
&gt;&nbsp; &nbsp; &nbsp;default:&nbsp; &nbsp; &nbsp; output = String(i)<br class="">
&gt;&nbsp; &nbsp; &nbsp;}<br class="">
&gt;<br class="">
&gt;&nbsp; &nbsp; &nbsp;print(output)<br class="">
&gt; }<br class="">
&gt;<br class="">
&gt; // `15` prints "FizzBuzz"<br class="">
&gt; ```<br class="">
&gt; _______________________________________________<br class="">
&gt; swift-evolution mailing list<br class="">
&gt; <a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
<br class="">
</blockquote></div></div>
</div></blockquote></div><br class=""></div></body></html>