<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="">Well, I propose the “#” syntax to be consistent with other proposals that intend to provide compilation-related code. In this case, the proposal is just a way to provide an indication that a certain field within a struct or class should be enforced to be a value of a certain enum, not just a plain integer, by the compiler. Anyhow, I think many different sintaxis could be elaborated. For example, another possible syntax could imply reusing the typealias expression:</div><div class=""><br class=""></div><div class="">extension Card{</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>typealias suit:CardSuit = suit:Int</div><div class="">}</div><div class=""><br class=""></div><div class="">However, I assume that using this syntax it should be possible to directly assign to the suit field both an integer or a CardSuit.</div>
<br class=""><div><blockquote type="cite" class=""><div class="">El 24 mar 2016, a las 18:43, James Campbell &lt;<a href="mailto:james@supmenow.com" class="">james@supmenow.com</a>&gt; escribió:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">I would rather have a syntax that mirrors the way Protocol does it.<div class=""><br class=""></div><div class=""><span style="font-size:12.8px" class="">struct Card {</span><br style="font-size:12.8px" class=""><span style="font-size:12.8px" class="">&nbsp; &nbsp; &nbsp; &nbsp; suit:enum&lt;CardSuit&gt;</span><br style="font-size:12.8px" class=""><span style="font-size:12.8px" class="">&nbsp; &nbsp; &nbsp; &nbsp; value:Int</span><br style="font-size:12.8px" class=""><span style="font-size:12.8px" class="">}</span><br class=""></div><div class=""><span style="font-size:12.8px" class=""><br class=""></span></div><div class=""><span style="font-size:12.8px" class="">or we could change it so this only excepts the enum itself unless you&nbsp;explicitly&nbsp;cast from a Int or another enum:</span></div><div class=""><span style="font-size:12.8px" class=""><br class=""></span></div><div class=""><span style="font-size:12.8px" class="">struct Card {</span><br style="font-size:12.8px" class=""><span style="font-size:12.8px" class="">&nbsp; &nbsp; &nbsp; &nbsp; suit:CardSuit</span><br style="font-size:12.8px" class=""><span style="font-size:12.8px" class="">&nbsp; &nbsp; &nbsp; &nbsp; value:Int</span><br style="font-size:12.8px" class=""><span style="font-size:12.8px" class="">}</span><span style="font-size:12.8px" class=""><br class=""></span></div></div><div class="gmail_extra"><br clear="all" class=""><div class=""><div class="gmail_signature"><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><p class=""><b class=""><font color="#cc0000" class="">___________________________________</font></b></p><p class=""><b class="">James⎥Head Of CEO</b></p><p class=""><b class=""><font color="#cc0000" class=""><a href="mailto:james@supmenow.com" target="_blank" class="">james@supmenow.com</a>⎥<a href="http://supmenow.com/" target="_blank" class="">supmenow.com</a></font></b></p><p class=""><b class=""><font size="2" class="">Sup</font></b></p><p class=""><b class=""><font size="2" class="">Runway East
</font></b></p><p class=""><b class=""><font size="2" class="">10 Finsbury Square</font></b></p><p class=""><b class=""><font size="2" class="">London</font></b></p><p class=""><b class=""><font size="2" class="">
EC2A 1AF&nbsp;</font></b></p></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
<br class=""><div class="gmail_quote">On Thu, Mar 24, 2016 at 5:41 PM, Carlos Rodríguez Domínguez <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">It is a common practice in C to assign to integer (int, int16, int64, etc.) typed variables “constant" values declared in enums. In swift, it is in fact possible to do that by using enums' “rawValue” property. When importing structs from C into swift, we even get some fields declared with an integer type, but expecting the assignment of a “constant” declared inside an enum. Of course, this is error prone, it is “old-style” programming and very confusing for newcomers. To solve this issue, my proposal is to be able to create extensions that promote certain fields within a class or struct to enums.<br class="">
<br class="">
For instance, let’s take these sample C struct and enum:<br class="">
<br class="">
struct Card {<br class="">
&nbsp; &nbsp; &nbsp; &nbsp; int suit;<br class="">
&nbsp; &nbsp; &nbsp; &nbsp; int rank;<br class="">
};<br class="">
<br class="">
typedef enum {HEARTS, DIAMONDS, CLUBS, SPADES} CardSuit;<br class="">
<br class="">
(Note: I understand that above code follows a bad programming practice, yet it is widely common)<br class="">
<br class="">
It should be imported into swift as follows:<br class="">
<br class="">
struct Card {<br class="">
&nbsp; &nbsp; &nbsp; &nbsp; suit:Int<br class="">
&nbsp; &nbsp; &nbsp; &nbsp; value:Int<br class="">
}<br class="">
<br class="">
enum CardSuit : Int {<br class="">
&nbsp; &nbsp; &nbsp; &nbsp; case Hearts, Diamonds, Clubs, Spades<br class="">
}<br class="">
<br class="">
Now, I propose to be able to create an extension as follows:<br class="">
<br class="">
extension Card {<br class="">
&nbsp; &nbsp; &nbsp; &nbsp; #enumvalue(suit:CardSuit)<br class="">
}<br class="">
<br class="">
From this moment on, the suit field should only receive CardSuit values, thus not requiring the use of raw values for assignments.<br class="">
<br class="">
These extensions should also be of great interest for people using CoreData, since it is not possible to declare enums in models. Therefore, to declare enums, it is necessary to declare integer values, and then use the “unsafe”, “unexpressive" approach explained before.<br class="">
<br class="">
Note that the proposal intends to only support promotions from integer values to enum values, but, for example, it could also be extended to string values.<br class="">
<br class="">
Finally, it could be appropriate to extend this proposal to redeclare func’s signatures, in order to promote certain parameters to enum values.<br class="">
<br class="">
Best,<br class="">
<br class="">
Carlos.<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="">
</blockquote></div><br class=""></div>
</div></blockquote></div><br class=""></body></html>