I don&#39;t think there&#39;d be much confusion with allowing protocol extensions to contain stored types but I could easily see that being very difficult to implement. <br><div class="gmail_quote"><div dir="ltr">On Fri, Dec 4, 2015 at 4:24 AM David Scrève &lt;<a href="mailto:david.screve@dlta-studio.com">david.screve@dlta-studio.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><span style="white-space:pre-wrap">        </span>Yes, <div><br></div><div><span style="white-space:pre-wrap">        </span>I agree with you that abstract might be attached to protocol family of feature…but protocol already manage the ‘abstract’ feature if you don’t consider the value storage issue.</div><div><br></div><div><span style="white-space:pre-wrap">        </span>Actually, there 2 ways to add this feature : </div><div><br></div><div><span style="white-space:pre-wrap">        </span>1 -  Protocol way : We need to add value storage to protocol</div><div><span style="white-space:pre-wrap">        </span>2 -  class way : We need to add abstract for method/properties</div><div><br><div>
<div><div><span style="white-space:pre-wrap">        </span>The question is : Is adding value storage to protocol is a good thing ?  It might create confusion between classes and protocol, maybe.</div><div><br></div><div><span style="white-space:pre-wrap">        </span>But, on the other side, there is not real reason to limit class extension to only method and not to properties. In this case, extending protocol to value container might be an interesting way to respond to this. Anyway, we might keep the abstract keyword.</div></div><div><br></div><div><span style="white-space:pre-wrap">        </span>Regards,</div><div><br></div><div>David</div><div><br></div></div></div></div><div style="word-wrap:break-word"><div><div><blockquote type="cite"><div>Le 4 déc. 2015 à 10:11, T.J. Usiyan &lt;<a href="mailto:griotspeak@gmail.com" target="_blank">griotspeak@gmail.com</a>&gt; a écrit :</div><br><div><div dir="ltr"><div>Hello,</div><div><br></div>This is an interesting example. I can&#39;t refute it without questioning decisions/intent rather than code so I&#39;ll just say that the `abstract` quality  you&#39;re after still seems like it should be fit into the protocol family of features.<br><div><br></div><div>TJ</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Dec 4, 2015 at 3:56 AM, David Scrève <span dir="ltr">&lt;<a href="mailto:david.screve@dlta-studio.com" target="_blank">david.screve@dlta-studio.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><span style="white-space:pre-wrap">        </span>Hello TJ,</div><div><br></div><div><span style="white-space:pre-wrap">        </span>Actually not completely…Protocol does not handle properties storage. Only class (and struct) can be made abstract.</div><div><br></div><div><span style="white-space:pre-wrap">        </span>Doing this with protocol and class required the use of both and you need to enforce developer to inherit from class and implement protocol.. An abstract class encapsulate both on this in a single entity.</div>
<div><br></div><div><span style="white-space:pre-wrap">        </span>Here is a sample class for WebService : </div><div><br></div><div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo"><span style="color:#bb2ca2">class</span> WebService {</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    <span style="color:#bb2ca2">private</span> <span style="color:#bb2ca2">var</span> lastModified : <span style="color:#703daa">NSDate</span></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    <span style="color:#bb2ca2">var</span> url : <span style="color:#703daa">String</span>?</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;min-height:13px"><br></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    <span style="color:#bb2ca2">init</span>() {</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(79,129,135)"><span>        </span>lastModified<span>=</span><span style="color:#703daa">NSDate</span><span>()</span></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    }</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;min-height:13px">    <br></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    <span style="color:#bb2ca2">func</span> performCall() {</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">        <span style="color:#3d1d81">print</span>(<span style="color:#bb2ca2">self</span>.<span style="color:#4f8187">url</span>)</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">        <span style="color:#bb2ca2">self</span>.<span style="color:#4f8187">lastModified</span>=<span style="color:#703daa">NSDate</span>()</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    }</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">}</div></div><div><br></div><div>As written below, I can create a WebService instance…but I would like to forbid this because URL is a property that must be implemented by inherited classes.</div><div><br></div><div>I I use a protocol and Protocol extension, I will not be able to have lastModified stored value.</div><div><br></div><div>My proposal is to add abstract keyword as below : </div><div><br></div><div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">abstract <span style="color:#bb2ca2">class</span> WebService {</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    <span style="color:#bb2ca2">private</span> <span style="color:#bb2ca2">var</span> lastModified : <span style="color:#703daa">NSDate</span></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    abstract <span style="color:#bb2ca2">var</span> url : <span style="color:#703daa">String</span>?</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;min-height:13px"><br></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    <span style="color:#bb2ca2">init</span>() {</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(79,129,135)"><span>        </span>lastModified<span>=</span><span style="color:#703daa">NSDate</span><span>()</span></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    }</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;min-height:13px">    <br></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    <span style="color:#bb2ca2">func</span> performCall() {</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">        <span style="color:#3d1d81">print</span>(<span style="color:#bb2ca2">self</span>.<span style="color:#4f8187">url</span>)</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">        <span style="color:#bb2ca2">self</span>.<span style="color:#4f8187">lastModified</span>=<span style="color:#703daa">NSDate</span>()</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    }</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">}</div></div><div><br></div><div>Then I will not be able to create a WebService object, and enforced to implement url property in inherited classes.</div><div><br></div><span style="white-space:pre-wrap">        </span>Regards,<div><br></div><div>David</div><div><div><div><br><div><blockquote type="cite"><div>Le 4 déc. 2015 à 09:43, T.J. Usiyan &lt;<a href="mailto:griotspeak@gmail.com" target="_blank">griotspeak@gmail.com</a>&gt; a écrit :</div><br><div><div dir="ltr">Hello David,<div><br></div><div>This sounds like something that can be accomplished with protocols and default implementations provided in protocol extensions. If you&#39;ve watched <a href="https://developer.apple.com/videos/play/wwdc2015-408/" target="_blank">Protocol-Oriented Programming in Swift [Session 408]</a>, slides 168 and on, once he begins talking about Protocol Extensions, is the relevant part. It looks like the functionality that you&#39;ve described is already present in this feature.</div><div><br></div><div>TJ</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Dec 4, 2015 at 3:30 AM, David Scrève <span dir="ltr">&lt;<a href="mailto:david.screve@dlta-studio.com" target="_blank">david.screve@dlta-studio.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">        Hi Everyone,<br>
<br>
        Nice to see this new swift-evolution process….I’m not sure to completely understand the whole process of requesting evolutions, but I’m trying<br>
to do…<br>
<br>
        As I develop sort of framework, I usually have classes that I wanted to partially in the framework and force the user to implement others parts.<br>
<br>
        For example, I have a WebService class that manage the whole process to perform asynchronous call, error management.<br>
        This class has an abstract property that is specific for each WebService call.<br>
<br>
        Then I would like to make the URL property abstract and, consequently, the whole WebService class abstract : The WebService cannot be directly instantiated.<br>
<br>
        The goal of this feature would be to extend to method.<br>
        This behavior already exists in Java and is really useful.<br>
<br>
        The workaround is to make an URL property that returns invalid value or make assertion, but the error is only detected at runtime.<br>
<br>
        My proposal would be to just add a keyword before func, class or var. An abstract property or func should not provide implementation.<br>
<br>
        Regards,<br>
<br>
<br>
David<br>
<br>
<br>
<br>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
<br></blockquote></div><br></div>
</div></blockquote></div><br></div></div></div></div><br>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
<br></blockquote></div><br></div>
</div></blockquote></div><br></div></div>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div>