<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">I propose that <font face="Menlo" class=""><b class="">(case .Foo = bar)</b></font> should be treated as an expression with a Boolean value, so the result can be set to a variable or returned from a method.</div><div class=""><br class=""></div><div class="">Considering the following enumeration:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><b class="">enum Bar {</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; case foo(name: String)</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; case notFoo</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; case unknownFoo</b></font></div><div class=""><font face="Menlo" class=""><b class="">}</b></font></div><div class=""><br class=""></div><div class="">Instead of having to do the following:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><b class="">func isBarFoo(bar: Bar) -&gt; Bool {</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; &nbsp; if case .Foo = bar {</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; &nbsp; &nbsp; &nbsp; return true</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; &nbsp; }</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; &nbsp; return false</b></font></div><div class=""><font face="Menlo" class=""><b class="">}</b></font></div><div class=""><br class=""></div><div class="">We could simply do the following:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><b class="">func isBarFoo(bar: Bar) -&gt; Bool {</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; &nbsp; return (case .Foo = bar)</b></font></div><div class=""><font face="Menlo" class=""><b class="">}</b></font></div><div class=""><br class=""></div><div class="">We could also do things like this:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><b class="">let isBarFoo = (case .Foo = bar)</b></font></div><div class=""><font face="Menlo" class=""><b class="">XCTAssert(isBarFoo)</b></font></div><div class=""><br class=""></div><div class="">Of course, this change is only required for enumerations that don't have a raw value type (String, Int, etc).</div><div class=""><br class=""></div><div class="">It assumes the developer does not care what the associated value is, which could lead to issues.&nbsp;But this is already the case with the `<font face="Menlo" class=""><b class="">if case ... return true/false</b></font>` syntax. So it is not a degrading feature, just a more concise syntax for something that already exists.</div><div class=""><br class=""></div><div class="">Something to consider is whether `<font face="Menlo" class=""><b class="">case let ...</b></font>` could be treated as an expression in the same way.&nbsp;For example:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><b class="">if (case let .Foo(name) = bar) &amp;&amp; name == "Alan" {</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; return true</b></font></div><div class=""><font face="Menlo" class=""><b class="">}</b></font></div><div class=""><font face="Menlo" class=""><b class="">return false</b></font></div><div class=""><br class=""></div><div class="">The above could be simplified to:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><b class="">return (case let .Foo(name) = bar) &amp;&amp; name == "Alan"</b></font></div><div class=""><br class=""></div><div class="">Due to the way AND-ed expression results are computed at runtime, the second expression would not be computed unless the first was true, so `<font face="Menlo" class=""><b class="">name</b></font>` must have a value. The compiler would know that when OR-ing expressions, the second expression is only computed if the first expression was false, so `<font face="Menlo" class=""><b class="">name</b></font>` definitely doesn't have a value:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><b class="">return (case let .Foo(name) = bar) || name == "Alan"</b></font></div><div class=""><br class=""></div><div class="">I would expect a compiler error similar to `<font face="Menlo" class=""><b class="">Variable declared in 'guard' condition is not usable in its body</b></font>`.</div><div class=""><br class=""></div><div class=""><div class="">What does everyone think of this? It would have no impact on existing code.&nbsp;</div></div><div class=""><br class=""></div><div class=""><br class=""></div><div style="font-size: 14px;" class=""><b class="">alternative, not proposing...</b></div><div class=""><br class=""></div><div class="">An alternative would be defaulting what equality means for enumerations, such that the `==` operator is automatically defined for enumerations&nbsp;in the following way:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><b class="">func ==(lhs: Bar,&nbsp;rhs: Bar) -&gt; Bool {</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; &nbsp; if case rhs = lhs {</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; &nbsp; &nbsp; &nbsp; return true</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; &nbsp; }</b></font></div><div class=""><font face="Menlo" class=""><b class="">&nbsp; &nbsp; return false</b></font></div><div class=""><font face="Menlo" class=""><b class="">}</b></font></div><div class=""><br class=""></div><div class="">However, I think that having a default implementation for enum is a bad idea,&nbsp;because it's adding default behaviour that the developer might not know about. And this could lead to a less experienced developer making a mistake when comparing two enum values with associated values. Developers that know the `<font face="Menlo" class=""><b class="">if case ...</b></font>` syntax are already expected to understand that they are ignoring the associated value and they can use `<font face="Menlo" class=""><b class="">if case let ...</b></font>` if they care about the associated value. So my proposal is in-line with an existing expectation.</div><div class=""><br class=""></div><div class=""><font face="Monaco" class=""><br class=""></font></div></body></html>