<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 Dec 15, 2015, at 10:45 PM, Douglas Gregor &lt;<a href="mailto:dgregor@apple.com" class="">dgregor@apple.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="content-type" content="text/html; charset=utf-8" class=""><div dir="auto" class=""><div class="">Hi Matthew,<br class=""><br class="">Sent from my iPhone</div><div class=""><br class="">On Dec 15, 2015, at 7:25 PM, Matthew Johnson &lt;<a href="mailto:matthew@anandabits.com" class="">matthew@anandabits.com</a>&gt; wrote:<br class=""><br class=""></div><blockquote type="cite" class=""><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div class=""><div class="">Dmitri, Slava and Doug thank you for taking the time to respond. &nbsp;I apologize for not thanking you sooner. &nbsp;</div><div class=""><br class=""></div><div class="">Since the core team has a loosely shared understanding of the goals but hasn't had time to write it down yet I thought it might be helpful if I put together a summary of the features that seem to me like obvious candidates for completing the current generic system. &nbsp;If I have missed anything significant please point that out.&nbsp;</div></div></div></blockquote><div class=""><br class=""></div><div class="">This is helpful, thank you!</div></div></div></blockquote><div><br class=""></div><div>You’re welcome! &nbsp;I appreciate the responses as well. &nbsp;Thank you!</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="auto" class=""><div class=""><br class=""></div><div class="">Lots of comments below. An overarching theme here is that I'm trying to scope down the list to what we need to achieve ABI stability and an expressive library &nbsp;fewer features means we're more likely to succeed with better quality.&nbsp;</div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class="">I'm placing a "**" next to items that I beleive I have seen mentioned by the core team as desired features. &nbsp;This is based on memory and may be innacurate or may be based on desires expressed, but not necessarily pinned to the Swift 3 timeline. &nbsp;</div><div class=""><br class=""></div><div class="">I'm hoping the core team might be able to indicate which items are likely to be part of the work you're doing on Swift 3, which items you might be interested in the community contributing to, and which items are unliekly to be considered during the Swift 3 timeframe even with community involvement. &nbsp;This could help interested contributors start thinking about what they might be interested in working on while we wait for a more complete document describing the vision.</div><div class=""><br class=""></div><div class="">- ** generic typealias</div></div></div></blockquote><div class=""><br class=""></div>This isn't high on my list. It's a good feature, and I want it someday, but introducing generic typealiases won't have any impact on the ABI and therefore can wait IMO.&nbsp;<div class=""><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class=""><br class=""></div><div class="">- allow protocols to specify a non-covarying Self in static method declarations (a possible solution to the problem of conforming non-final classes in Cocoa to protocols containing factory methods)</div></div></div></blockquote><div class=""><br class=""></div>Maybe. This isn't terribly high on my list, but in also behind on the discussion.&nbsp;<br class=""></div></div></div></blockquote><div><br class=""></div><div>This is related to the thread Joe started on “Making protocol conformance inheritance controllable”. &nbsp;It would solve some (probably not all) of the use cases that prompted that idea. &nbsp;Of course it solves the ones I have run into which is part of the reason I included it here. &nbsp;Any solution to this problem would be extremely useful - it doesn’t need to be this specific solution.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="auto" class=""><div class=""><blockquote type="cite" class=""><div class=""><div class=""><div class=""><br class=""></div><div class="">- extensions</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- ** allow same type constraints</div></div></div></blockquote><div class=""><br class=""></div>I'm assuming you mean an extension like&nbsp;</div><div class=""><br class=""></div><div class="">&nbsp; extension Array where Element == String &nbsp;{}</div><div class=""><br class=""></div><div class="">Yes, it's something we want to support&nbsp;</div></div></div></blockquote><div><br class=""></div><div>Yep, that’s what I meant.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="auto" class=""><div class=""><br class=""></div><div class=""><blockquote type="cite" class=""><div class=""><div class=""><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- ** allow protocol conformance in constrained extensions</div></div></div></blockquote><div class=""><br class=""></div>This is something like:</div><div class=""><br class=""></div><div class="">&nbsp; extension Array : Equatable where Element : Equatable {}</div><div class=""><br class=""></div><div class="">It is very very high priority for Swift 3.</div><div class=""><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- allow protocol conformance in protocol extensions</div></div></div></blockquote><div class=""><br class=""></div>This is something like:</div><div class=""><br class=""></div><div class="">&nbsp; extension CollectionType : Equatable where Generator.Element : Equatable {}</div><div class=""><br class=""></div><div class="">This is probably not a priority for Swift 3. It seems very cool, and I've advocated for similar features in the past (in more static generics systems), but the potential for ambiguities with such definitions is very high and the runtime cost for asking questions such as "is this T Equatable?" can be very high when this feature is in play.&nbsp;</div><div class=""><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class=""><br class=""></div><div class="">- associated type constraints</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- use of Self as a superclass constraint</div></div></div></blockquote><div class=""><br class=""></div><div class="">This wasn't on my list at all. Care to elaborate on why this is important?</div></div></div></div></blockquote><div><br class=""></div><div>I included this one primarily because I know it isn’t possible but other superclass constraints are. &nbsp;Removing this limitation seems like a natural part of “completing” the current generics system. &nbsp;But I don’t have concrete uses for it and if implementation is complex I wouldn’t consider it a priority.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="auto" class=""><div class=""><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- ** where clause constraining inidividual associated types</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- ** where clause relating multiple assocated types</div></div></div></blockquote><div class=""><br class=""></div><div class="">Yes to both. We need the to properly express some relationships in the standard library types, such as a SubSequence's Element type matching the Element type of the &nbsp;sequence itself.&nbsp;</div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class=""><br class=""></div><div class="">- existentials for protocols with associated types</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- protocol existentials don't conform to the protocol itself</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- ** fully bound: protocol&lt;GeneratorType where Element == Int&gt;&nbsp;</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- ** fully constrained: protocol&lt;GeneratorType where Element: CustomStringConvertible&gt;</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- partially bound / constrained - allow access to members only mentioning constrained associated types</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- ** unbound - allow access to members not mentioning Self or associated types</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- composition: protocol&lt;P1, P2 where P1.Associated: P3, P2.Associated == Int, P1.Other == P2.Other&gt;</div></div></div></blockquote><div class=""><br class=""></div>This one is tough. It is a very, very common user request and existentials are painfully under implemented in Swift. On the other hand, it's an additive feature that isn't likely (IMO!) to be important for ABI stabilization in the language or library. So, I would put it out of scope for Swift 3.&nbsp;</div></div></div></blockquote><div><br class=""></div><div>I’m going to hope Joe’s comments about stabilizing the standard library win out. &nbsp;Ad-hoc type erasure is painful enough that it influences design decisions. &nbsp;It would be great to see existentials see at least enough improvement to cover the standard library cases. &nbsp;</div><div><br class=""></div><div>If this is an area that could be impacted by community involvement please let us know! &nbsp;I think you would find people willing to help out. &nbsp;As you noted, it’s one of the bigger gripes people seem to have about Swift.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="auto" class=""><div class=""><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class="">- nesting (per Slava's email)</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- ** Generic types nested inside generic functions</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- ** Generic types nested inside generic types</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- ** Generic functions nested inside generic functions which capture values or outer generic types</div></div></div></blockquote><div class=""><br class=""></div><div class="">I think Slava and I disagree on this one ;)</div><div class=""><br class=""></div><div class="">I don't consider this critical for Swift 3. The compiler will greatly improve simply by making this work (because the dumb assumptions that block this feature likely trigger additional bugs), but we don't need to allow it for ABI stability. There are a handful of places in the standard library where we've had to promote a type that would normally be nested to the top level to work around this, but we could live with that as a smallish ABI wart in the long term and introduce generic typealiases to clean up the syntax once those features become available.&nbsp;</div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class="">Some things that I expect are out of scope for Swift 3 but am mentioning for completeness / confirmation of that:</div><div class=""><br class=""></div><div class="">- variadic generics</div><div class="">- higher kinded types</div><div class="">- higher rank types</div></div></div></blockquote><div class=""><br class=""></div>Agreed that all are out of scope for Swift 3. The first is a feature of particular interest to me... But absolutely is out of scope. I also want to eventually use variadic generics to extend arbitrary length tuples of Equatable types to make them Equatable, for example ;)</div><div class=""><br class=""></div><div class="">A couple features you didn't mention that I consider in scope for Swift 3 generics:</div><div class=""><br class=""></div><div class="">- generic subscripts (the standard library might need these), e.g.,</div></div></div></blockquote><blockquote type="cite" class=""><div class=""><div dir="auto" class=""><div class=""><br class=""></div><div class="">&nbsp; subscript&lt;C : SequenceType where C.Generator.Element == Index&gt; (indices: C) -&gt; [Index]</div></div></div></blockquote><div><br class=""></div><div>Thanks for mentioning this. &nbsp;I really want to see this one. &nbsp;I have use cases for it. &nbsp;Not sure how I forgot to include it in my list.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="auto" class=""><div class=""><br class=""></div><div class="">- recursive protocol constraints, where an associated type can be stated to conform to its enclosing protocol (directly or indirectly), eg,</div><div class=""><br class=""></div><div class="">&nbsp; protocol SequenceType {</div><div class="">&nbsp; &nbsp; typealias SubSequence : SequenceType</div><div class="">&nbsp; }</div><div class=""><br class=""></div><div class="">- operators defined in types (only indirectly related to generics):</div><div class=""><br class=""></div><div class="">&nbsp; extension Array where Element : Equatable {</div><div class="">&nbsp; &nbsp; func ==(lhs: Array, rhs: Array) -&gt; Bool { ... }</div><div class="">&nbsp; }</div><div class=""><br class=""></div><div class="">- "real" default implementations in protocols. It looks like a syntactic simplification from</div><div class="">Putting the definition in an extension, but putting the default implementation in the protocol itself has an important effect on resilience: one should be able to add requirements to a protocol without breaking ABI so long as those requirements have a default implementation.&nbsp;</div></div></div></blockquote><div><br class=""></div><div>I appreciate your adding additional items in addition to commenting on my list! &nbsp;Thank you!</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="auto" class=""><div class=""><br class=""></div><div class="">Several of these (recursive constraints, where clauses placing requirements on associated types in protocols, etc) are partly aimed at eliminated many of the underscored protocols in the standard library, because we don't want them to be part of the library ABI.&nbsp;</div><div class=""><br class=""></div><div class="">I suspect I'll remember other small things, but that's the "big" list... and it's size perhaps illustrates why we need to choose carefully to maintain focus.&nbsp;</div><div class=""><br class=""></div><div class="">&nbsp; - Doug</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><blockquote type="cite" class=""><div class=""><div class=""><div class="">Thanks,</div><div class="">Matthew</div></div><div class=""><br class=""></div><div class=""><br class=""></div><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Dec 11, 2015, at 11:24 PM, Douglas Gregor &lt;<a href="mailto:dgregor@apple.com" class="">dgregor@apple.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Dec 10, 2015, at 3:45 PM, Matthew Johnson via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">One of the stated focus areas for Swift 3 is to complete the generics system. &nbsp;<div class=""><br class=""></div><div class="">How far along is the design for the “complete” generics system? &nbsp;</div></div></div></blockquote><div class=""><br class=""></div><div class="">There’s a loose shared understanding of the pieces we need among the compiler and standard library developers that have been co-evolving the generics system, but it’s not written down in any single place.</div><br class=""><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">Is there appetite among the core team to involve the community in evaluating planned features or submitting proposals to complement existing plans?</div></div></div></blockquote><div class=""><br class=""></div><div class="">Yes, absolutely. I feel like we (the core team) need to articulate our vision here—what we feel we need to accomplish (in features, in the standard library API, in the implementation) in Swift 3 vs. what we believe we can introduce later on, how the pieces all fit together, etc.—to help facilitate those discussions.</div><br class=""><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">Also, is there any documentation other than <a href="https://github.com/apple/swift/blob/master/docs/Generics.rst" class="">https://github.com/apple/swift/blob/master/docs/Generics.rst</a> describing in detail what the complete vision for the generics system is and what new features will be added in Swift 3 (as well as any generics features that have been decided against for Swift or version 3 specifically)?</div></div></div></blockquote><br class=""></div><div class="">No, that document is the best overall documentation for the vision of the generics system, despite being mostly untouched for more than two years and lacking newer features (protocol extensions, anyone?).</div><div class=""><br class=""></div><div class="">So, we need to write up a document describing our vision here. It’s going to take a little time, both because it’s a nontrivial task and because the likely principal authors are also engaged in other large Swift 3 tasks (e.g.,&nbsp;<a href="https://github.com/apple/swift-evolution/blob/master/proposals/0005-objective-c-name-translation.md" class="">https://github.com/apple/swift-evolution/blob/master/proposals/0005-objective-c-name-translation.md</a>)</div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>- Doug</div><div class=""><br class=""></div><br class=""></div></div></blockquote></div><br class=""></div></blockquote></div></div></div></blockquote></div><br class=""></body></html>