<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=""><br class=""><div><blockquote type="cite" class=""><div class="">On 05 Apr 2016, at 08:19, T.J. Usiyan &lt;<a href="mailto:griotspeak@gmail.com" class="">griotspeak@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div class="">I missed it the first time around.<br class=""></div><div class=""><br class=""></div><div class="">I like this idea but worry that it will invite some difficult to follow implementations.&nbsp;</div></div></div></blockquote><div><br class=""></div><div>True. I think, the question is how flexible one wants enum to be. Right now, Swift enums are nice for representing compact state, but they are quite awkward when trying to do more (e.g. complex recursive data structures with polymorphic behavior). This might be by design, &nbsp;or this could be simply because enums are still incomplete. Extending enum functionality would effectively make then another alternative to class hierarchies/protocols, only that in the enum case the polymorphic structure is constrained initially. I think it might make sense for enum to be used to implement highly specialised polymorphic data structures, but its more a question of language design. It would be fine in my book if one said ‘no, we really don’t want enums to be that powerful use protocols/structs or classes for complex cases like that’.</div><div><br class=""></div><div>This is something where I’d like to have more input from the core team, how do they envision the enum future?</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""><br class=""></div><div class="">I think that there would need to exist some restrictions on how methods could be broken up. One such restriction might be that these implementations could not be broken up between extensions for a given method. I don't know if the added complexity of reading this pays off though. you get something like this if you call a method in each case of the enum.&nbsp;</div></div></div></blockquote><div><br class=""></div><div>A restriction like this would make perfect sense. Tracking of exhaustiveness could (should) be done at a declaration scope level, i.e. declarations must be exhaustive after every enum definition/extension.&nbsp;</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""><br class=""></div><div class="">Would keeping track of exhaustiveness be more of a technical issue with this feature? On the user side, this feature would be a pain without improving the 'switch must be exhaustive' message to include the cases that the compiler believes are missing.</div></div></div></blockquote><div><br class=""></div><div>I imagine a compiler error along the lines of ‘missing implementation for func() for case A, B, C'</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""><br class=""></div><div class="">TJ</div></div><div class="gmail_extra"><br class=""><div class="gmail_quote">On Tue, Apr 5, 2016 at 1:57 AM, Taras Zakharko via swift-evolution <span dir="ltr" class="">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class="">Is the lack of comments due to general disinterest in such a thing or did my mail go amiss somehow? ;)<div class=""><br class=""></div><div class="">Best,&nbsp;</div><span class="HOEnZb"><font color="#888888" class=""><div class=""><br class=""></div><div class="">&nbsp;Taras</div></font></span><div class=""><div class="h5"><div class=""><div class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On 31 Mar 2016, at 14:39, Taras Zakharko &lt;<a href="mailto:taras.zakharko@uzh.ch" target="_blank" class="">taras.zakharko@uzh.ch</a>&gt; wrote:</div><br class=""><div class=""><div style="word-wrap:break-word" class=""><div class="">Recently, I have been working on implementing some non-trivial data structures in Swift (its about storing polygons in a space-partitioning tree). I am using enums to represent different types of parent nodes and leafs and I had some ideas to make them more fit for this kind of work. I expect that I will write multiple enum-related emails, each one concentrating on one particular feature. A usual disclaimer: these are random, quite rough ideas that might or not make sense, but I’d like to get some feedback &nbsp;from the community.&nbsp;</div><div class=""><br class=""></div><div class=""><b class="">Case-based dispatch for enum methods</b></div><div class=""><b class=""><br class=""></b></div><div class="">Often, behaviour of enum method depends on the enum value. For instance, imagine a tree structure with an insert(value:) method: the way how the inserting is handled depends on the type of the node. Usually, you’d implement it as a switch operation:</div><div class=""><br class=""></div><div class="">func insert(value:T) {</div><div class="">&nbsp; switch self {</div><div class="">&nbsp; &nbsp; case let Leaf1(a, b, c): …</div><div class="">&nbsp; &nbsp; case let Leaf2(a, b): …</div><div class="">&nbsp; &nbsp; case let Parent1(x, y): …</div><div class="">&nbsp; }</div><div class="">}</div><div class=""><br class=""></div><div class="">If the insert operation is non-trivial, this becomes quite convoluted. You can of course define private helper methods or functions that perform the specific functionality, but I don’t find it to be a very satisfying solution: there is still the switch boilerplate + you need to be careful to call the correct helper, so there are some safety issues.&nbsp;</div><div class=""><br class=""></div><div class="">Now, suppose there was a way to add a method implementation that is case-specific:</div><div class=""><br class=""></div><div class="">enum MyTree {</div><div class="">&nbsp; case Leaf1(Float, Float) {</div><div class="">&nbsp; &nbsp; mutating &nbsp;func insert(value: T) {</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp;let (a, b) = self.Leaf1 // or something like that</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp;// handle insert for the case that node is of type Parent1</div><div class=""><br class=""></div><div class="">&nbsp; &nbsp; &nbsp; &nbsp;...</div><div class="">&nbsp; &nbsp; &nbsp;}</div><div class="">&nbsp; }</div><div class=""><br class=""></div><div class="">&nbsp;case&nbsp;Parent1(Int, Float) {</div><div class="">&nbsp; &nbsp; &nbsp;mutating func insert(value: T) {</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp;let (x, y) = self.Parent1 // or something like that</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp;// handle insert for the case that node is of type Parent1</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp;...</div><div class="">&nbsp; &nbsp; &nbsp;}</div><div class="">&nbsp; }</div><div class=""><br class=""></div><div class="">default {</div><div class="">&nbsp; &nbsp;mutating func insert(value: T) {</div><div class="">&nbsp; &nbsp; &nbsp; // handle insert for all other cases&nbsp;</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp;...</div><div class="">&nbsp; &nbsp; &nbsp;}</div><div class="">}</div><div class="">}</div><div class=""><br class=""></div><div class="">etc. The case method specification needs to be exhaustive and adhere to the same signature. It is a compile-time error to specify a method or property only in some cases but not in the other ones (that is why we have the default implementation). Outer scope definitions apply to all cases and cannot be overridden by a case-specific implementation.&nbsp;</div><div class=""><br class=""></div><div class="">Basically, the compiler would synthesise an outer-scope method that does a switch operator to dispatch to the particular implementation. This is thus mostly syntactic sugar which also promotes safety (as it becomes impossible to call the wrong implementation). These would make the case-specific methods fully compatible with protocols etc. (e.g. a protocol Insertable { mutating func insert(value:) }</div><div class=""><br class=""></div><div class="">Looking forward to your thoughts on this!</div><div class=""><br class=""></div><div class="">Best,&nbsp;</div><div class=""><br class=""></div><div class="">&nbsp;Taras</div><div class=""><br class=""></div><br class=""></div></div></blockquote></div><br class=""></div></div></div></div></div><br class="">_______________________________________________<br class="">
swift-evolution mailing list<br class="">
<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">
<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><br class=""></div>
</div></blockquote></div><br class=""></body></html>