<div dir="ltr">Sorry all for attaching the original post to the Non-Exhaustive enums thread. I&quot;m moving it down to it&#39;s own thread. <div><div><br></div><div>My understanding is I&#39;m not allowed to write up a proposal unless I have the time to implement it. Is that still true? This is a major pain point for me to avoid having to write things like this:</div><div>





<p class="inbox-inbox-p1">





</p><p class="inbox-inbox-p1">if<span class="inbox-inbox-s1"> </span>case<span class="inbox-inbox-s1"> .</span><span class="inbox-inbox-s2">search</span><span class="inbox-inbox-s1"> = presenter.</span><span class="inbox-inbox-s2">state</span><span class="inbox-inbox-s1"> { </span>return<span class="inbox-inbox-s1"> </span>true<span class="inbox-inbox-s1"> } </span>else<span class="inbox-inbox-s1"> { </span>return<span class="inbox-inbox-s1"> </span>false<span class="inbox-inbox-s1"> }</span></p></div><div>Side note: Thanks Kevin, didn&#39;t know you could nest enums in switches like that. Super helpful!<br></div><div><br></div><div>------------------------------------------------------</div><div><pre style="white-space:pre-wrap">I thought I would add another case that isn’t possible with current syntax (so far as I’m aware).  You can’t negate the comparison to do something for all cases except a particular case.  You have to have an empty if block and use the else block, or have an empty case in a switch statement and use the default.

enum Enum {
  case a(param: String)
  case b(param: String)
  case c(param: String)
}

let enumeration: Enum = .a(param: &quot;Hi&quot;)

if !(case .a = enumeration) {
  // Do something
}

— Charles

&gt;<i> On Dec 20, 2017, at 9:55 AM, Kevin Nattinger via swift-evolution &lt;<a href="https://lists.swift.org/mailman/listinfo/swift-evolution">swift-evolution at swift.org</a>&gt; wrote:
</i>&gt;<i> 
</i>&gt;<i> I agree this would be useful. At the moment I have to hack around it with things like `var isFoo: Bool { if case .foo = self …`* with cases I commonly need, but this is definitely a feature that has come up before and I support. It is potentially related to getting the values through an accessor, which has also come up several times.
</i>&gt;<i> 
</i>&gt;<i> Sidenote, your `switch` example is actually trivial with existing syntax:
</i>&gt;<i> 
</i>&gt;<i> switch enumeration {
</i>&gt;<i> case .a(.c(let param)): // or just .a(.c) if you don&#39;t need the value
</i>&gt;<i>     print(param)
</i>&gt;<i> default:
</i>&gt;<i>     break
</i>&gt;<i> }
</i>&gt;<i> 
</i>&gt;<i> I use this from time to time switching over, e.g., optional enums.
</i>&gt;<i> 
</i>&gt;<i> *: ugliest syntax ever, and it can&#39;t even be used as a standalone expression.
</i>&gt;<i> 
</i>&gt;<i> 
</i>&gt;&gt;<i> On Dec 20, 2017, at 8:44 AM, Ethan Diamond via swift-evolution &lt;<a href="https://lists.swift.org/mailman/listinfo/swift-evolution">swift-evolution at swift.org</a> &lt;mailto:<a href="https://lists.swift.org/mailman/listinfo/swift-evolution">swift-evolution at swift.org</a>&gt;&gt; wrote:
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> Hello everyone,
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> One major pain point I&#39;ve run into with Swift is the inability to evaluate the case of an enum that has associated values in a way that just returns a bool. We&#39;ve been given the ability in a switch statement:
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> enum Enum {
</i>&gt;&gt;<i>    case a(param: String)
</i>&gt;&gt;<i>    case b(param: String)
</i>&gt;&gt;<i> }
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> let enumeration: Enum = a(param: &quot;Hi&quot;)
</i>&gt;&gt;<i> switch enumeration {
</i>&gt;&gt;<i>     case a:
</i>&gt;&gt;<i>       // Do something
</i>&gt;&gt;<i>     case b:
</i>&gt;&gt;<i>       // Do something
</i>&gt;&gt;<i> }
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> We&#39;e been given the ability in the context of an if statement:
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> enum Enum {
</i>&gt;&gt;<i>    case a(param: String)
</i>&gt;&gt;<i>    case b(param: String)
</i>&gt;&gt;<i> }
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> let enumeration: Enum = a(param: &quot;Hi&quot;)
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> if case .a = enumeration { 
</i>&gt;&gt;<i>     // Do something
</i>&gt;&gt;<i> }
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> But without a basic was of getting a bool for if an enum is a given case, here&#39;s a list of things I can&#39;t do:
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> Where statements:
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> enum Enum {
</i>&gt;&gt;<i>    case a(param: Enum2)
</i>&gt;&gt;<i>    case b(param: Enum2)
</i>&gt;&gt;<i> }
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> enum Enum2 {
</i>&gt;&gt;<i>     case c(param: String)
</i>&gt;&gt;<i>     case d(param: String)
</i>&gt;&gt;<i> }
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> let enumeration: Enum = a(param: &quot;Hi&quot;)
</i>&gt;&gt;<i> switch enumeration {
</i>&gt;&gt;<i>     case a(let inner) where [INNER CASE IS .c]
</i>&gt;&gt;<i> }
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> ---------
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> Filter an array for a certain case:
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> Expertly explained by Erica Sadun here: <a href="http://ericasadun.com/2017/01/31/challenge-filtering-associated-value-enumeration-arrays/">http://ericasadun.com/2017/01/31/challenge-filtering-associated-value-enumeration-arrays/</a> &lt;<a href="http://ericasadun.com/2017/01/31/challenge-filtering-associated-value-enumeration-arrays/">http://ericasadun.com/2017/01/31/challenge-filtering-associated-value-enumeration-arrays/</a>&gt;
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> ---------
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> Nicely set a UIButton to hidden if an enum is a certain case:
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> enum State {
</i>&gt;&gt;<i>     case `default`
</i>&gt;&gt;<i>     case searching(results: [Result])
</i>&gt;&gt;<i> }
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> myButton.isHidden = [STATE IS .searching]
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> ---------
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> I&#39;ve run into this issue a ton of times because I tend to represent my views a State enums. I haven&#39;t seen anything on the board for plans for solving this issue, thought. Has there been any discussion about addressing it? Ideally I&#39;d be able to do this:
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> enum Enum {
</i>&gt;&gt;<i>    case a(param: String)
</i>&gt;&gt;<i>    case b(param: String)
</i>&gt;&gt;<i> }
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> let enumeration: Enum = a(param: &quot;Hi&quot;)
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> case .a = enumeration // Bool
</i>&gt;&gt;<i> case .a(let param) = enumeration // Bool, assigns &quot;Hi&quot; to &quot;param&quot;
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> Thanks!
</i>&gt;&gt;<i> Ethan
</i>&gt;&gt;<i> 
</i>&gt;&gt;<i> _______________________________________________
</i>&gt;&gt;<i> swift-evolution mailing list
</i>&gt;&gt;<i> <a href="https://lists.swift.org/mailman/listinfo/swift-evolution">swift-evolution at swift.org</a> &lt;mailto:<a href="https://lists.swift.org/mailman/listinfo/swift-evolution">swift-evolution at swift.org</a>&gt;
</i>&gt;&gt;<i> <a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a>
</i>&gt;<i> 
</i>&gt;<i> _______________________________________________
</i>&gt;<i> swift-evolution mailing list
</i>&gt;<i> <a href="https://lists.swift.org/mailman/listinfo/swift-evolution">swift-evolution at swift.org</a>
</i>&gt;<i> <a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a></i></pre></div></div></div>