<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="">I'm not very familiar with the Swift compiler codebase and it would take me more time to implement this than someone that has already contributed before. Considering that since Swift 5 proposals are required to include a pull request with an implementation, it would be much faster if someone with better knowledge of the compiler codebase would help me with the implementation, so a formal proposal could be made.</div><div class=""><br class=""></div><div class="">So... If someone wants to pitch in and help implement this, I'd be very grateful! ðŸ™‚</div><div class=""><br class=""></div><div class="">I do want to get around to study the compiler's code inside-and-out, but that's an asynchronous process.</div><div class=""><br class=""></div><div><blockquote type="cite" class=""><div class="">On Aug 21, 2017, at 12:41 PM, Adrian Zubarev &lt;<a href="mailto:adrian.zubarev@devandartist.com" class="">adrian.zubarev@devandartist.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div id="bloop_customfont" style="font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; margin: 0px;" class="">Yes, `where` clause is welcome to typealises (including generic ones) and existentials in general. I would love to help on such proposal. I think David Hart is also interested in this one. (cc)</div><br style="font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><div id="bloop_sign_1503308348105416960" class="bloop_sign" style="font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;"></div><br style="font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><p class="airmail_on" style="font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">Am 21. August 2017 um 11:38:14, Gor Gyolchanyan via swift-evolution (<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>) schrieb:</p><blockquote type="cite" class="clean_bq" style="font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"><span class=""><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class=""></div><div class="">Hello, Swift community!<div class=""><br class=""></div><div class="">I'd like to start a discussion about a possibility of constrained protocol aliases. The declaration would look like this:</div><div class=""><br class=""></div><div class=""><div class=""><font face="Menlo" class=""><font color="#941751" class="">typealias</font><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">BinaryProtocol</font><span class="Apple-converted-space">&nbsp;</span>=<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">RandomAccessCollection</font><span class="Apple-converted-space">&nbsp;</span>&amp;<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">MutablCollection</font><span class="Apple-converted-space">&nbsp;</span>&amp;<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">RangeReplaceableCollection</font><span class="Apple-converted-space">&nbsp;</span><font color="#941751" class="">where</font>&nbsp;<font color="#008F00" class="">Binary</font>.<font color="#008F00" class="">Index</font><span class="Apple-converted-space">&nbsp;</span>==<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Int</font>,<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Binary</font>.<font color="#008F00" class="">Element</font><span class="Apple-converted-space">&nbsp;</span>==<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Bool</font></font></div></div><div class=""><br class=""></div><div class="">The syntax and semantics of this declaration are exactly the same as an analogous<span class="Apple-converted-space">&nbsp;</span><font color="#941751" face="Menlo" class="">associatedtype</font><span class="Apple-converted-space">&nbsp;</span>declaration inside a protocol.</div><div class="">In the example above, the type<span class="Apple-converted-space">&nbsp;</span><font face="Menlo" color="#008F00" class="">BinaryProtocol</font>&nbsp;represents a logical array of bits and is a generic-only protocol that is usable in any context where an integer-indexed mutable range-replaceable random-access collection is expected.</div><div class="">Now, it can be used in a very concise and elegant way:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">public</font><span class="Apple-converted-space">&nbsp;</span><font color="#941751" class="">protocol</font><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">BinaryInitializable</font><span class="Apple-converted-space">&nbsp;</span>{</font></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">init</font>&lt;<font color="#008F00" class="">Binary</font>&gt;(binary:<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Binary</font>)<span class="Apple-converted-space">&nbsp;</span><font color="#941751" class="">where</font><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Binary</font>:<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">BinaryProtocol</font></font></div><div class=""><font face="Menlo" class="">}</font></div><div class=""><br class=""></div><div class="">which would otherwise look very verbose and inelegant:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">public</font><span class="Apple-converted-space">&nbsp;</span><font color="#941751" class="">protocol</font><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">BinaryInitializable</font><span class="Apple-converted-space">&nbsp;</span>{</font></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">init</font>&lt;<font color="#008F00" class="">Binary</font>&gt;(binary:<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Binary</font>)<span class="Apple-converted-space">&nbsp;</span><font color="#941751" class="">where</font><span class="Apple-converted-space">&nbsp;</span>Binary:&nbsp;<font color="#008F00" class="">RandomAccessCollection</font>&nbsp;&amp;&nbsp;<font color="#008F00" class="">MutablCollection</font>&nbsp;&amp;&nbsp;<font color="#008F00" class="">RangeReplaceableCollection,</font>&nbsp;<font color="#008F00" class="">Binary</font>.<font color="#008F00" class="">Index</font>&nbsp;==&nbsp;<font color="#008F00" class="">Int</font>,&nbsp;<font color="#008F00" class="">Binary</font>.<font color="#008F00" class="">Element</font>&nbsp;==&nbsp;<font color="#008F00" class="">Bool</font></font></div><div class=""><font face="Menlo" class="">}</font></div><div class=""><div class=""><br class=""></div><div class="">Considering that smaller sets of constraints could be aliased to their own protocol and then composited into more complex aliases, this feature would dramatically improve readability and maintainability of code that uses complex constraints, that currently leads to arcane mess:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">struct</font>&nbsp;<font color="#008F00" class="">Mirror</font>&nbsp;{</font></div><div class=""><ul class="container" style="box-sizing: border-box; margin: 0px; padding: 0px; width: auto; list-style: none;"><li class=""><font face="Menlo" class=""><font color="#797979" class="">/// ...</font></font></li><li class=""><font face="Menlo" class=""><font color="#941751" class="">init</font>&lt;<font color="#008F00" class="">Subject</font>,&nbsp;<font color="#008F00" class="">C</font>&nbsp;<font color="#941751" class="">where</font>&nbsp;<font color="#008F00" class="">C</font>&nbsp;:&nbsp;<font color="#008F00" class="">Collection</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Indices</font>&nbsp;:&nbsp;<font color="#008F00" class="">Collection</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">SubSequence</font>&nbsp;:&nbsp;<font color="#008F00" class="">Collection</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Indices</font>.<font color="#008F00" class="">Index</font>&nbsp;==&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Index</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Indices</font>.<font color="#008F00" class="">SubSequence</font>&nbsp;==&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Indices</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Iterator</font>.<font color="#008F00" class="">Element</font>&nbsp;==&nbsp;<font color="#008F00" class="">Mirror</font>.<font color="#008F00" class="">Child</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">SubSequence</font>.<font color="#008F00" class="">Index</font>&nbsp;==&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Index</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">SubSequence</font>.<font color="#008F00" class="">Indices</font>&nbsp;:&nbsp;<font color="#008F00" class="">Collection</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">SubSequence</font>.<font color="#008F00" class="">SubSequence</font>&nbsp;==&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">SubSequence</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Indices</font>.<font color="#008F00" class="">Iterator</font>.<font color="#008F00" class="">Element</font>&nbsp;==&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Index</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">SubSequence</font>.<font color="#008F00" class="">Indices</font>.<font color="#008F00" class="">Index</font>&nbsp;==&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Index</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">SubSequence</font>.<font color="#008F00" class="">Indices</font>.<font color="#008F00" class="">SubSequence</font>&nbsp;==&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">SubSequence</font>.<font color="#008F00" class="">Indices</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">SubSequence</font>.<font color="#008F00" class="">Iterator</font>.<font color="#008F00" class="">Element</font>&nbsp;==&nbsp;<font color="#008F00" class="">Mirror</font>.<font color="#008F00" class="">Child</font>,&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">SubSequence</font>.<font color="#008F00" class="">Indices</font>.<font color="#008F00" class="">Iterator</font>.<font color="#008F00" class="">Element</font>&nbsp;==&nbsp;<font color="#008F00" class="">C</font>.<font color="#008F00" class="">Index</font>&gt;(_ subject:&nbsp;<font color="#008F00" class="">Subject</font>, children:&nbsp;<font color="#008F00" class="">C</font>, displayStyle:&nbsp;<font color="#008F00" class="">Mirror</font>.<font color="#008F00" class="">DisplayStyle</font>? =&nbsp;<font color="#941751" class="">default</font>, ancestorRepresentation:&nbsp;<font color="#008F00" class="">Mirror</font>.<font color="#008F00" class="">AncestorRepresentation</font>&nbsp;=&nbsp;<font color="#941751" class="">default</font>)</font></li></ul><div class=""><font face="Menlo" color="#797979" class="">/// ...</font></div></div><div class=""><font face="Menlo" class="">}</font></div></div><div class=""><font face="Menlo" class=""><br class=""></font></div><div class=""><span class="" style="font-family: Menlo;"><br class=""></span></div><div class=""><font color="#797979" face="Menlo" class="">/// A collection that is its own sub-sequence</font></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">typealias</font><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">RecursivelySliceableCollection</font><span class="Apple-converted-space">&nbsp;</span>=<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Collection</font><span class="Apple-converted-space">&nbsp;</span><font color="#941751" class="">where</font></font></div><div class=""><font color="#008F00" face="Menlo" class="">RecursivelySliceableCollection</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">SubSequence</font><font face="Menlo" class="">:<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Collection</font>,</font></div><div class=""><font color="#008F00" face="Menlo" class="">RecursivelySliceableCollection</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">SubSequence</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">Element</font><span class="Apple-converted-space">&nbsp;</span><span class="" style="font-family: Menlo;">==&nbsp;</span><font color="#008F00" face="Menlo" class="">RecursivelySliceableCollection</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">Element</font></div><div class=""><font color="#008F00" face="Menlo" class="">RecursivelySliceableCollection</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">SubSequence</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">Indices</font><span class="Apple-converted-space">&nbsp;</span><span class="" style="font-family: Menlo;">==&nbsp;</span><font color="#008F00" face="Menlo" class="">RecursivelySliceableCollection</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">Indices</font><span class="" style="font-family: Menlo;">,</span></div><div class=""><font color="#008F00" face="Menlo" class="">RecursivelySliceableCollection</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">SubSequence</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">SubSequence</font><span class="Apple-converted-space">&nbsp;</span><span class="" style="font-family: Menlo;">==&nbsp;</span><font color="#008F00" face="Menlo" class="">RecursivelySliceableCollection</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">SubSequence</font></div><div class=""><font face="Menlo" class=""><br class=""></font></div><div class=""><font color="#797979" face="Menlo" class="">/// A collection that is its own index collection</font></div><div class=""><font color="#941751" face="Menlo" class="">typealias</font><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" face="Menlo" class="">RecursivelyIndexableCollection</font><span class="Apple-converted-space">&nbsp;</span><span class="" style="font-family: Menlo;">=</span><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" face="Menlo" class="">Collection</font><span class="Apple-converted-space">&nbsp;</span><font color="#941751" face="Menlo" class="">where</font></div><div class=""><font color="#008F00" face="Menlo" class="">RecursivelyIndexableCollection</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">Indices</font><span class="Apple-converted-space">&nbsp;</span><span class="" style="font-family: Menlo;">==&nbsp;</span><font color="#008F00" face="Menlo" class="">RecursivelySliceableCollection</font><span class="" style="font-family: Menlo;">,</span></div><div class=""><font color="#008F00" face="Menlo" class="">RecursivelyIndexableCollection</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">Indices</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">Index</font><span class="Apple-converted-space">&nbsp;</span><span class="" style="font-family: Menlo;">==&nbsp;</span><font color="#008F00" face="Menlo" class="">RecursivelyIndexableCollection</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">Index</font><span class="" style="font-family: Menlo;">,</span></div><div class=""><span class="" style="font-family: Menlo;"><br class=""></span></div><div class=""><font color="#941751" face="Menlo" class="">struct</font><span class="Apple-converted-space">&nbsp;</span><span class="" style="font-family: Menlo;">Mirror {</span></div><div class=""><font color="#797979" face="Menlo" class="">/// ...</font></div><div class=""><font color="#941751" face="Menlo" class="">init</font><span class="" style="font-family: Menlo;">&lt;</span><font color="#008F00" face="Menlo" class="">Subject</font><span class="" style="font-family: Menlo;">,</span><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" face="Menlo" class="">C</font><span class="" style="font-family: Menlo;">:&nbsp;</span><font color="#008F00" face="Menlo" class="">RecursivelySliceableCollection</font><span class="Apple-converted-space">&nbsp;</span><span class="" style="font-family: Menlo;">&amp;&nbsp;</span><font color="#008F00" face="Menlo" class="">RecursivelyIndexableCollection</font><span class="" style="font-family: Menlo;">,&nbsp;</span><font color="#941751" face="Menlo" class="">where</font>&nbsp;&nbsp;<font color="#008F00" face="Menlo" class="">C</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">Element</font><span class="Apple-converted-space">&nbsp;</span><span class="" style="font-family: Menlo;">==</span><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" face="Menlo" class="">Mirror</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" face="Menlo" class="">Child</font><span class="" style="font-family: Menlo;">&gt;(</span><span class="" style="font-family: Menlo;">_ subject:</span><span class="" style="font-family: Menlo;">&nbsp;</span><font color="#008F00" class="" style="font-family: Menlo;">Subject</font><span class="" style="font-family: Menlo;">, children:</span><span class="" style="font-family: Menlo;">&nbsp;</span><font color="#008F00" class="" style="font-family: Menlo;">C</font><span class="" style="font-family: Menlo;">, displayStyle:</span><span class="" style="font-family: Menlo;">&nbsp;</span><font color="#008F00" class="" style="font-family: Menlo;">Mirror</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" class="" style="font-family: Menlo;">DisplayStyle</font><span class="" style="font-family: Menlo;">? =</span><span class="" style="font-family: Menlo;">&nbsp;</span><font color="#941751" class="" style="font-family: Menlo;">default</font><span class="" style="font-family: Menlo;">, ancestorRepresentation:</span><span class="" style="font-family: Menlo;">&nbsp;</span><font color="#008F00" class="" style="font-family: Menlo;">Mirror</font><span class="" style="font-family: Menlo;">.</span><font color="#008F00" class="" style="font-family: Menlo;">AncestorRepresentation</font><span class="" style="font-family: Menlo;">&nbsp;</span><span class="" style="font-family: Menlo;">=</span><span class="" style="font-family: Menlo;">&nbsp;</span><font color="#941751" class="" style="font-family: Menlo;">default</font><span class="" style="font-family: Menlo;">)</span></div><div class=""><font color="#797979" face="Menlo" class="">/// ...</font></div><div class=""><span class="" style="font-family: Menlo;">}</span></div><div class=""><br class=""></div><div class="">Even considering that the proposal SE-0157 (<a href="https://github.com/apple/swift-evolution/blob/master/proposals/0157-recursive-protocol-constraints.md" class="">https://github.com/apple/swift-evolution/blob/master/proposals/0157-recursive-protocol-constraints.md</a>) is going to make this specific use case a non-issue, the principle applies to all cases where there are commonly used complex constraints that don't necessarily involve recursive constraints.</div><div class=""><br class=""></div><div class=""><b class="">Specializing Generic-Only Protocols For Non-Generic Use</b></div><div class=""><br class=""></div><div class="">An additional feature that would prove to be very useful would be to make a constrained protocol alias be a non-generic-only protocol if the constraints of the alias declaration specify a same-type requirement for all its associated types, while defaulted associated types would also count.</div><div class="">Example:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">protocol</font><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Consumer</font><span class="Apple-converted-space">&nbsp;</span>{</font></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">associatedtype</font><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Consumable</font></font></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">mutating</font>&nbsp;<font color="#941751" class="">func</font><span class="Apple-converted-space">&nbsp;</span>consume(_ consumable:<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Consumable</font>)<span class="Apple-converted-space">&nbsp;</span><font color="#941751" class="">throws</font></font></div><div class=""><font face="Menlo" class="">}</font></div><div class=""><font face="Menlo" class=""><br class=""></font></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">var</font><span class="Apple-converted-space">&nbsp;</span>consumer0:<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Consumer</font><span class="Apple-converted-space">&nbsp;</span><font color="#797979" class="">//&nbsp;</font></font><span class="" style="font-family: Menlo;"><i class=""><font color="#FF2600" class="">error: Consumer is only usable in a generic context</font></i></span></div><div class=""><font face="Menlo" class=""><br class=""></font></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">typealias</font><span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">CharacterConsumer</font><span class="Apple-converted-space">&nbsp;</span>=<span class="Apple-converted-space">&nbsp;</span><font color="#008F00" class="">Consumer</font><span class="Apple-converted-space">&nbsp;</span><font color="#941751" class="">where&nbsp;</font>&nbsp;</font><span class="" style="color: rgb(0, 143, 0); font-family: Menlo;">Character</span><font face="Menlo" class=""><font color="#008F00" class="">Consumer</font>.<font color="#008F00" class="">Consumable</font><span class="Apple-converted-space">&nbsp;</span>==&nbsp;</font><span class="" style="color: rgb(0, 143, 0); font-family: Menlo;">Character</span></div><div class=""><font face="Menlo" class=""><br class=""></font></div><div class=""><font face="Menlo" class=""><font color="#941751" class="">var</font><span class="Apple-converted-space">&nbsp;</span>consumer1:&nbsp;</font><span class="" style="color: rgb(0, 143, 0); font-family: Menlo;">Character</span><font face="Menlo" class=""><font color="#008F00" class="">Consumer</font><span class="Apple-converted-space">&nbsp;</span><font color="#797979" class="">// OK</font></font></div><div class=""><br class=""></div><div class="">The current workaround would be to declare a new protocol with protocol inheritance clauses and a<span class="Apple-converted-space">&nbsp;</span><font color="#941751" face="Menlo" class="">where</font><span class="Apple-converted-space">&nbsp;</span>clause, but the major downside is that it introduces a completely new protocol that is not compatible with any context that expects the underlying protocols and their constraints.</div><div class=""><br class=""></div><div class="">Regards,</div><div class="">Gor Gyolchanyan.</div><div class=""><br class=""></div>_______________________________________________<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" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a></div></div></span></blockquote></div></blockquote></div><br class=""></body></html>