<html><head><style>
body {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        padding:1em;
        margin:auto;
        background:#fefefe;
}

h1, h2, h3, h4, h5, h6 {
        font-weight: bold;
}

h1 {
        color: #000000;
        font-size: 28pt;
}

h2 {
        border-bottom: 1px solid #CCCCCC;
        color: #000000;
        font-size: 24px;
}

h3 {
        font-size: 18px;
}

h4 {
        font-size: 16px;
}

h5 {
        font-size: 14px;
}

h6 {
        color: #777777;
        background-color: inherit;
        font-size: 14px;
}

hr {
        height: 0.2em;
        border: 0;
        color: #CCCCCC;
        background-color: #CCCCCC;
    display: inherit;
}

p, blockquote, ul, ol, dl, li, table, pre {
        margin: 15px 0;
}

a, a:visited {
        color: #4183C4;
        background-color: inherit;
        text-decoration: none;
}

#message {
        border-radius: 6px;
        border: 1px solid #ccc;
        display:block;
        width:100%;
        height:60px;
        margin:6px 0px;
}

button, #ws {
        font-size: 12 pt;
        padding: 4px 6px;
        border-radius: 5px;
        border: 1px solid #bbb;
        background-color: #eee;
}

code, pre, #ws, #message {
        font-family: Monaco;
        font-size: 10pt;
        border-radius: 3px;
        background-color: #F8F8F8;
        color: inherit;
}

code {
        border: 1px solid #EAEAEA;
        margin: 0 2px;
        padding: 0 5px;
}

pre {
        border: 1px solid #CCCCCC;
        overflow: auto;
        padding: 4px 8px;
}

pre > code {
        border: 0;
        margin: 0;
        padding: 0;
}

#ws { background-color: #f8f8f8; }


.bloop_markdown table {
border-collapse: collapse;  
font-family: Helvetica, arial, freesans, clean, sans-serif;  
color: rgb(51, 51, 51);  
font-size: 15px; line-height: 25px;
padding: 0; }

.bloop_markdown table tr {
border-top: 1px solid #cccccc;
background-color: white;
margin: 0;
padding: 0; }
     
.bloop_markdown table tr:nth-child(2n) {
background-color: #f8f8f8; }

.bloop_markdown table tr th {
font-weight: bold;
border: 1px solid #cccccc;
margin: 0;
padding: 6px 13px; }

.bloop_markdown table tr td {
border: 1px solid #cccccc;
margin: 0;
padding: 6px 13px; }

.bloop_markdown table tr th :first-child, table tr td :first-child {
margin-top: 0; }

.bloop_markdown table tr th :last-child, table tr td :last-child {
margin-bottom: 0; }

.bloop_markdown blockquote{
  border-left: 4px solid #dddddd;
  padding: 0 15px;
  color: #777777; }
  blockquote > :first-child {
    margin-top: 0; }
  blockquote > :last-child {
    margin-bottom: 0; }

code, pre, #ws, #message {
    word-break: normal;
    word-wrap: normal;
}

hr {
    display: inherit;
}

.bloop_markdown :first-child {
    -webkit-margin-before: 0;
}

code, pre, #ws, #message {
    font-family: Menlo, Consolas, Liberation Mono, Courier, monospace;
}


.send { color:#77bb77; }
.server { color:#7799bb; }
.error { color:#AA0000; }</style></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="bloop_markdown"><p>No, you’re totally right there. The mentioned <code>class</code> keyword is the protocol constraint-keyword such as <code>protocol X : &gt;&gt; class &lt;&lt; { … }</code>. Instead we would like to generalize <code>AnyObject</code></p>

<p></p></div><div class="bloop_original_html"><style>body{font-family:Helvetica,Arial;font-size:13px}</style><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;"><br></div> <br> <div id="bloop_sign_1487003696527886848" class="bloop_sign"><div style="font-family:helvetica,arial;font-size:13px">--&nbsp;<br>Adrian Zubarev<br>Sent with Airmail</div></div> <br><p class="airmail_on">Am 13. Februar 2017 um 17:34:18, Alejandro Martinez via swift-evolution (<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>) schrieb:</p> <blockquote type="cite" class="clean_bq"><span><div><div></div><div>On class vs. AnyObject, probablt a dumb question but maybe worth<br>clarifying, we don't pretend to change it in a class declaration<br>right?<br><br>like<br><br>AnyObject A {<br> var ....<br>}<br><br>apart from that looking forward for this!<br><br><br>On Sun, Feb 12, 2017 at 8:32 PM, David Hart via swift-evolution<br>&lt;swift-evolution@swift.org&gt; wrote:<br>&gt; Hi Matthew,<br>&gt;<br>&gt; Your arguments made sense to me. I modified the proposal to choose strategy<br>&gt; number 3: deprecating and removing class over several versions to favour<br>&gt; AnyObject. Mind having another proof read?<br>&gt;<br>&gt; https://github.com/hartbit/swift-evolution/blob/subclass-existentials/proposals/XXXX-subclass-existentials.md<br>&gt;<br>&gt; Anybody has counter arguments?<br>&gt;<br>&gt; Class and Subtype existentials<br>&gt;<br>&gt; Proposal: SE-XXXX<br>&gt; Authors: David Hart, Austin Zheng<br>&gt; Review Manager: TBD<br>&gt; Status: TBD<br>&gt;<br>&gt; Introduction<br>&gt;<br>&gt; This proposal brings more expressive power to the type system by allowing<br>&gt; Swift to represent existentials of classes and subtypes which conform to<br>&gt; protocols.<br>&gt;<br>&gt; Motivation<br>&gt;<br>&gt; Currently, the only existentials which can be represented in Swift are<br>&gt; conformances to a set of protocols, using the &amp;protocol composition syntax:<br>&gt;<br>&gt; Protocol1 &amp; Protocol2<br>&gt;<br>&gt; On the other hand, Objective-C is capable of expressing existentials of<br>&gt; classes and subclasses conforming to protocols with the following syntax:<br>&gt;<br>&gt; id&lt;Protocol1, Protocol2&gt;<br>&gt; Base&lt;Protocol&gt;*<br>&gt;<br>&gt; We propose to provide similar expressive power to Swift, which will also<br>&gt; improve the bridging of those types from Objective-C.<br>&gt;<br>&gt; Proposed solution<br>&gt;<br>&gt; The proposal keeps the existing &amp; syntax but allows the first element, and<br>&gt; only the first, to be either the AnyObjectkeyword or of class type. The<br>&gt; equivalent to the above Objective-C types would look like this:<br>&gt;<br>&gt; AnyObject &amp; Protocol1 &amp; Protocol2<br>&gt; Base &amp; Protocol<br>&gt;<br>&gt; As in Objective-C, the first line is an existential of classes which conform<br>&gt; to Protocol1 and Protocol2, and the second line is an existential of<br>&gt; subtypes of Base which conform to Protocol.<br>&gt;<br>&gt; Here are the new proposed rules for what is valid in a existential<br>&gt; conjunction syntax:<br>&gt;<br>&gt; 1. The first element in the protocol composition syntax can be the AnyObject<br>&gt; keyword to enforce a class constraint:<br>&gt;<br>&gt; protocol P {}<br>&gt; struct S : P {}<br>&gt; class C : P {}<br>&gt; let t: P &amp; AnyObject // Compiler error: AnyObject requirement must be in<br>&gt; first position<br>&gt; let u: AnyObject &amp; P = S() // Compiler error: S is not of class type<br>&gt; let v: AnyObject &amp; P = C() // Compiles successfully<br>&gt;<br>&gt; 2. The first element in the protocol composition syntax can be a class type<br>&gt; to enforce the existential to be a subtype of the class:<br>&gt;<br>&gt; protocol P {}<br>&gt; struct S {}<br>&gt; class C {}<br>&gt; class D : P {}<br>&gt; class E : C, P {}<br>&gt; let t: P &amp; C // Compiler error: subclass constraint must be in first<br>&gt; position<br>&gt; let u: S &amp; P // Compiler error: S is not of class type<br>&gt; let v: C &amp; P = D() // Compiler error: D is not a subtype of C<br>&gt; let w: C &amp; P = E() // Compiles successfully<br>&gt;<br>&gt; 3. When a protocol composition type contains a typealias, the validity of<br>&gt; the type is determined using the following steps:<br>&gt;<br>&gt; Expand the typealias<br>&gt; Normalize the type by removing duplicate constraints and replacing less<br>&gt; specific constraints by more specific constraints (a class constraint is<br>&gt; less specific than a class type constraint, which is less specific than a<br>&gt; constraint of a subclass of that class).<br>&gt; Check that the type does not contain two class-type constraints<br>&gt;<br>&gt; class C {}<br>&gt; class D : C {}<br>&gt; class E {}<br>&gt; protocol P1 {}<br>&gt; protocol P2 {}<br>&gt; typealias TA1 = AnyObject &amp; P1<br>&gt; typealias TA2 = AnyObject &amp; P2<br>&gt; typealias TA3 = C &amp; P2<br>&gt; typealias TA4 = D &amp; P2<br>&gt; typealias TA5 = E &amp; P2<br>&gt;<br>&gt; typealias TA5 = TA1 &amp; TA2<br>&gt; // Expansion: typealias TA5 = AnyObject &amp; P1 &amp; AnyObject &amp; P2<br>&gt; // Normalization: typealias TA5 = AnyObject &amp; P1 &amp; P2<br>&gt; // TA5 is valid<br>&gt;<br>&gt; typealias TA6 = TA1 &amp; TA3<br>&gt; // Expansion: typealias TA6 = AnyObject &amp; P1 &amp; C &amp; P2<br>&gt; // Normalization (AnyObject &lt; C): typealias TA6 = C &amp; P1 &amp; P2<br>&gt; // TA6 is valid<br>&gt;<br>&gt; typealias TA7 = TA3 &amp; TA4<br>&gt; // Expansion: typealias TA7 = C &amp; P2 &amp; D &amp; P2<br>&gt; // Normalization (C &lt; D): typealias TA7 = D &amp; P2<br>&gt; // TA7 is valid<br>&gt;<br>&gt; typealias TA8 = TA4 &amp; TA5<br>&gt; // Expansion: typealias TA8 = D &amp; P2 &amp; E &amp; P2<br>&gt; // Normalization: typealias TA8 = D &amp; E &amp; P2<br>&gt; // TA8 is invalid because the D and E constraints are incompatible<br>&gt;<br>&gt; class and AnyObject<br>&gt;<br>&gt; This proposal merges the concepts of class and AnyObject, which now have the<br>&gt; same meaning: they represent an existential for classes. To get rid of the<br>&gt; duplication, we suggest only keeping AnyObject around. To reduce<br>&gt; source-breakage to a minimum, class could be redefined as typealias class =<br>&gt; AnyObject and give a deprecation warning on class for the first version of<br>&gt; Swift this proposal is implemented in. Later, class could be removed in a<br>&gt; subsequent version of Swift.<br>&gt;<br>&gt; Source compatibility<br>&gt;<br>&gt; This change will not break Swift 3 compability mode because Objective-C<br>&gt; types will continue to be imported as before. But in Swift 4 mode, all types<br>&gt; bridged from Objective-C which use the equivalent Objective-C existential<br>&gt; syntax could break code which does not meet the new protocol requirements.<br>&gt; For example, the following Objective-C code:<br>&gt;<br>&gt; @interface MyViewController<br>&gt; - (void)setup:(nonnull<br>&gt; UIViewController&lt;UITableViewDataSource,UITableViewDelegate&gt;*)tableViewController;<br>&gt; @end<br>&gt;<br>&gt; is imported into Swift-3 mode as:<br>&gt;<br>&gt; class MyViewController {<br>&gt;     func setup(tableViewController: UIViewController) {}<br>&gt; }<br>&gt;<br>&gt; which allows calling the function with an invalid parameter:<br>&gt;<br>&gt; let myViewController: MyViewController()<br>&gt; myViewController.setup(UIViewController())<br>&gt;<br>&gt; The previous code continues to compile but still crashs if the Objective-C<br>&gt; code calls a method of UITableViewDataSource or UITableViewDelegate. But if<br>&gt; this proposal is accepted and implemented as-is, the Objective-C code will<br>&gt; be imported in Swift 4 mode as:<br>&gt;<br>&gt; class MyViewController {<br>&gt;     func setup(tableViewController: UIViewController &amp; UITableViewDataSource<br>&gt; &amp; UITableViewDelegate) {}<br>&gt; }<br>&gt;<br>&gt; That would then cause the Swift code run in version 4 mode to fail to<br>&gt; compile with an error which states that UIViewController does not conform to<br>&gt; the UITableViewDataSource and UITableViewDelegate protocols.<br>&gt;<br>&gt; Alternatives considered<br>&gt;<br>&gt; An alternative solution to the class/AnyObject duplication was to keep both,<br>&gt; redefine AnyObject as typealias AnyObject = class and favor the latter when<br>&gt; used as a type name.<br>&gt;<br>&gt; Acknowledgements<br>&gt;<br>&gt; Thanks to Austin Zheng and Matthew Johnson who brought a lot of attention to<br>&gt; existentials in this mailing-list and from whom most of the ideas in the<br>&gt; proposal come from.<br>&gt;<br>&gt; On 9 Feb 2017, at 21:50, Matthew Johnson &lt;matthew@anandabits.com&gt; wrote:<br>&gt;<br>&gt;<br>&gt; On Feb 9, 2017, at 2:44 PM, David Hart &lt;david@hartbit.com&gt; wrote:<br>&gt;<br>&gt;<br>&gt; On 9 Feb 2017, at 20:43, Matthew Johnson via swift-evolution<br>&gt; &lt;swift-evolution@swift.org&gt; wrote:<br>&gt;<br>&gt;<br>&gt;<br>&gt; Sent from my iPad<br>&gt;<br>&gt; On Feb 9, 2017, at 1:30 PM, Hooman Mehr via swift-evolution<br>&gt; &lt;swift-evolution@swift.org&gt; wrote:<br>&gt;<br>&gt;<br>&gt; On Feb 9, 2017, at 10:47 AM, Joe Groff via swift-evolution<br>&gt; &lt;swift-evolution@swift.org&gt; wrote:<br>&gt;<br>&gt; On Feb 9, 2017, at 4:26 AM, Step Christopher via swift-evolution<br>&gt; &lt;swift-evolution@swift.org&gt; wrote:<br>&gt; Looks good. Minor comments below:<br>&gt; The typealias 'T5' is repeated as both an initial composition, and as a<br>&gt; demonstration of combining typealiases.<br>&gt;<br>&gt; This proposal merges the concepts of class and AnyObject, which now have the<br>&gt; same meaning: they represent an existential for classes. They are four<br>&gt; solutions to this dilemna:<br>&gt;<br>&gt; Do nothing.<br>&gt; Replace all uses of AnyObject by class, breaking source compatibility.<br>&gt; Replace all uses of class by AnyObject, breaking source compatibility.<br>&gt; Redefine AnyObject as typealias AnyObject = class.<br>&gt;<br>&gt; I agree with other comments on recommending 4 here, and covering the others<br>&gt; as alternatives<br>&gt;<br>&gt; I agree that we need the typealias for compatibility. I think it's still<br>&gt; worth discussing whether the `AnyObject` typealias should *only* be there<br>&gt; for compatibility; it could be deprecated or obsoleted in Swift 4 or future<br>&gt; language versions.<br>&gt;<br>&gt;<br>&gt; I think it might be worth keeping to provide a more sensible capitalization<br>&gt; alternative than lower case “class” when used as a type name:<br>&gt;<br>&gt; var obj: class // this looks weird because of capitalization.<br>&gt;<br>&gt; var obj: AnyObject // this looks better.<br>&gt;<br>&gt;<br>&gt; I agree that it looks better and would choose AnyObject if source<br>&gt; compatibility weren't an issue.  One option that wasn't listed was to drop<br>&gt; 'class' but use a multi-release deprecation strategy and a fix-it to<br>&gt; facilitate a smooth transition.  If the community is willing to adopt this<br>&gt; approach it would be my first choice.<br>&gt;<br>&gt;<br>&gt; You mean option 3?<br>&gt;<br>&gt;<br>&gt; Pretty much, but option 3 does not make it clear that it won’t break source<br>&gt; immediately in Swift 4.  I think it becomes much more reasonable if Swift<br>&gt; 3.1 code still compiles in Swift 4 mode, but with a deprecation warning.<br>&gt;<br>&gt; The reason I prefer `AnyObject` to `class` is because I think it’s ugly to<br>&gt; have `class` as the name of an existential type.  Type names are uppercase<br>&gt; in Swift.  It is also used to compose with protocols which also use<br>&gt; uppercase names in Swift.  Because it appears in contexts which use an<br>&gt; uppercase convention it makes sense for this to have an uppercase name.<br>&gt; `AnyObject` seems like the obvious choice if we’re going to go in that<br>&gt; direction.<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; -Joe<br>&gt; _______________________________________________<br>&gt; swift-evolution mailing list<br>&gt; swift-evolution@swift.org<br>&gt; https://lists.swift.org/mailman/listinfo/swift-evolution<br>&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; swift-evolution mailing list<br>&gt; swift-evolution@swift.org<br>&gt; https://lists.swift.org/mailman/listinfo/swift-evolution<br>&gt;<br>&gt; _______________________________________________<br>&gt; swift-evolution mailing list<br>&gt; swift-evolution@swift.org<br>&gt; https://lists.swift.org/mailman/listinfo/swift-evolution<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; swift-evolution mailing list<br>&gt; swift-evolution@swift.org<br>&gt; https://lists.swift.org/mailman/listinfo/swift-evolution<br>&gt;<br><br><br><br>-- <br>Alejandro Martinez<br>http://alejandromp.com<br>_______________________________________________<br>swift-evolution mailing list<br>swift-evolution@swift.org<br>https://lists.swift.org/mailman/listinfo/swift-evolution<br></div></div></span></blockquote></div><div class="bloop_markdown"><p></p></div></body></html>