<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Sat, Apr 16, 2016 at 3:56 AM, Brent Royal-Gordon <span dir="ltr">&lt;<a href="mailto:brent@architechies.com" target="_blank">brent@architechies.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">(I favor &quot;Values&quot; because &quot;Value&quot; in the singular implies to me that you can take a single value and enumerate it somehow, which is not what I have in mind.)<br></blockquote><div><br></div><div>OK, after reading it this way long enough, I&#39;m on board with that. Anyway, if this ever gets into review, it&#39;ll be subject to internal bikeshedding.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
<span class=""><br></span><span class=""><br>
&gt; ### Should allValues implementations be derived for Comparable enums? What if the sorted order does/doesn&#39;t match the source order?<br>
&gt;<br>
&gt; Brent has suggested the semantics of allValues should be such that for Comparable types, allValues is guaranteed to be ordered. If that were the case, we might not want to require the compiler to derive a ValueEnumerable implementation, since the source order may not match the Comparable-sorted order, and verifying this could overly complicate things. (I think I&#39;m in agreement here: having the values be ordered is a good implementation of the principle of least surprise.)<br>
<br>
</span>With the impending introduction of a `Comparable` requirement on collection indices, we now have a second good reason for this: the values themselves are good candidates to index into the `allValues` collection, and they will need to be `Comparable`.<br>
<br>
Incidentally, one open question is whether enums with raw values should be compared in source order or in raw value order. In other words, in:<br>
<br>
        enum Foo: ValuesEnumerable {<br>
                case bar = 2<br>
                case baz = 1<br>
        }<br>
<br>
Is `Foo.allValues` equivalent to `[bar, baz]` or `[baz, bar]`? I&#39;m not certain we can always reliably sort raw values at compile time; `String` is particularly worrisome because sort order tends to depend on tables built into the OS, but even integer literals are suspect when you consider that this feature can be used to initialize *any* `IntegerLiteralConvertible` type (or `StringLiteralConvertible`, or I believe `FloatLiteralConvertible` as well). Analyzing a raw value&#39;s sort order eventually becomes equivalent to analyzing a custom Comparable implementation.<br></blockquote><div><br></div><div>Good questions. Although I said I liked the idea of having allValues be in Comparable order, I&#39;m now leaning towards source order. It avoids extra burden on the derived implementation (or on the documentation of the protocol), and the user can get them in sorted() order easily if desired. (However, we need to consider effects on the library evolution/resilience support.)</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
<br>Suppose we introduce a `ValuesCountable` (or maybe just `Countable`) protocol like this:<br>
<br>
        protocol ValuesCountable: Strideable /* implies Comparable and Equatable */ {<br>
                associatedtype Stride: SignedInteger<br>
                static var allValues: CountableClosedRange&lt;Self&gt; { get }<br>
        }<br>
<br>
Swift already synthesizes Equatable. We could additionally have it synthesize:<br>
<br>
        • A `&lt;` which compares the bit pattern (or perhaps the raw values?) to determine ordering.<br>
        • A `distance(to:)` and `advanced(by:)` which operate with knowledge of the known-good values.<br>
        • An `allValues` which basically amounts to just `return &lt;first case&gt;...&lt;last case&gt;`.<br></blockquote><div><br></div><div>This is an interesting idea. It&#39;s nice to think that the whole thing could be built on the existing range/interval types, and I appreciate your thinking through it with consideration for upcoming features/changes.</div><div><br></div><div>However, requiring (and/or synthesizing) a Comparable and Strideable implementation seems like it would be overkill for most use cases, and for some enums it may not be appropriate to require either one.</div><div><br></div><div>I&#39;d like to see these ideas (or this whole feature) revisited after the Swift 3 changes to collections/iterators and generics have settled down, but IMO this is beyond what we should be shooting for as an initial version.</div></div><br></div><div class="gmail_extra">Jacob</div></div>