<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="" applecontenteditable="true"><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class="">[Proposal: <a href="https://github.com/apple/swift-evolution/blob/master/proposals/0104-improved-integers.md" class="">https://github.com/apple/swift-evolution/blob/master/proposals/0104-improved-integers.md</a>]<div class=""><br class=""></div><div class="">Hi, Max (and Dave). I did have some questions about this revision:</div><div class=""><br class=""></div><div class=""><div class=""><blockquote type="cite" class="">Arithmetic&nbsp;and&nbsp;SignedArithmetic&nbsp;protocols have been renamed to&nbsp;Number&nbsp;and&nbsp;SignedNumber.<br class=""></blockquote><br class=""></div><div class="">What happens to NSNumber here? It feels like the same problem as Character and (NS)CharacterSet.</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><div class=""><blockquote type="cite" class="">Endian-converting initializers and properties were added to the&nbsp;FixedWidthInteger&nbsp;protocol.<br class=""></blockquote><br class=""></div>This is the thing I have the biggest problem with. Endian conversions aren't numeric operations, and you can't meaningfully mix numbers of different endianness. That implies to me that numbers with different endianness should have different types. I think there's a design to explore with LittleEndian&lt;Int&gt; and BigEndian&lt;Int&gt;, and explicitly using those types whenever you need to convert. Here's a sketch of such a thing:</div><div class=""><br class=""></div></div></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">struct LittleEndian&lt;Value: FixedWidthInteger&gt; {</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; private var storage: Value</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class=""><br class=""></div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; public var value: Value {</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">#if little_endian</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; &nbsp; return storage</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">#else</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; &nbsp; return swapBytes(storage)</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">#endif</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; }</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class=""><br class=""></div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; public var bitPattern: Value {</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; &nbsp; return storage</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; }</div></div><div class=""><br class=""></div><div class="">&nbsp; public var asBigEndian: BigEndian&lt;Value&gt; {</div><div class="">&nbsp; &nbsp; return BigEndian(value: self.value)</div><div class="">&nbsp; }</div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class=""><br class=""></div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; public init(value: Value) {</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">#if little_endian</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; &nbsp; storage = value</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">#else</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; &nbsp; storage = swapBytes(value)</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">#endif</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; }</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class=""><br class=""></div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; public init(bitPattern: Value) {</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; &nbsp; storage = bitPattern</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">&nbsp; }</div></div></div><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class="">}</div></div></div></blockquote><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" applecontenteditable="true" class=""><div class=""><div class=""><br class=""></div><div class="">I'm not saying this is the <i class="">right</i>&nbsp;solution, just that I suspect adding Self-producing properties that change endianness is the wrong one.</div><div class=""><br class=""></div><br class=""></div><div class=""><blockquote type="cite" class="">&nbsp;&nbsp;///&nbsp;The number of bits equal to 1 in this value's binary representation.<br class="">&nbsp;&nbsp;///<br class="">&nbsp;&nbsp;///&nbsp;For example, in a fixed-width integer type with a `bitWidth` value of 8,<br class="">&nbsp;&nbsp;///&nbsp;the number 31 has five bits equal to 1.<br class="">&nbsp;&nbsp;///<br class="">&nbsp;&nbsp;///&nbsp; &nbsp; &nbsp;let x: Int8 = 0b0001_1111<br class="">&nbsp;&nbsp;///&nbsp; &nbsp; &nbsp;// x == 31<br class="">&nbsp;&nbsp;///&nbsp; &nbsp; &nbsp;// x.popcount == 5<br class="">&nbsp;&nbsp;var&nbsp;popcount:&nbsp;Int&nbsp;{&nbsp;get<div class="">&nbsp;}</div></blockquote><br class=""></div><div class="">Is this property actually useful enough to put into a protocol? I know it's defaulted, but it's already an esoteric operation; it seems unlikely that one would need it in a generic context. (It's also definable for arbitrary UnsignedIntegers as well as arbitrary FixedWidthIntegers.)</div><div class=""><br class=""></div><div class="">(I'm also still not happy with the non-Swifty name, but I see "populationCount" or "numberOfOneBits" would probably be worse.)</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">Thanks in advance,</div><div class="">Jordan</div></div></body></html>