<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 Aug 19, 2017, at 5:33 PM, Taylor Swift &lt;<a href="mailto:kelvin13ma@gmail.com" class="">kelvin13ma@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">I agree it’s probably a bad idea to add the default arg to those two functions. However, the default argument in initialize(repeating:count:) is there for backwards compatibility since it already had it before and there’s like a hundred places in the stdlib that use this default value.<br class=""></div></div></blockquote><div><br class=""></div><div>Alright, I could agree to that if no one else wants to weigh in. As long as you remove the default from the memory binding API.</div><div><br class=""></div><div>-Andy</div><br class=""><blockquote type="cite" class=""><div class=""><div class="gmail_extra"><div class="gmail_quote">On Sat, Aug 19, 2017 at 6:02 PM, Andrew Trick <span dir="ltr" class="">&lt;<a href="mailto:atrick@apple.com" target="_blank" class="">atrick@apple.com</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><br class=""><div class=""><blockquote type="cite" class=""><span class=""><div class="">On Aug 15, 2017, at 9:47 PM, Taylor Swift via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="m_-6780494060929294959Apple-interchange-newline"></span><div class=""><div class="h5"><div class=""><div dir="ltr" class="">Implementation is here: <a href="https://github.com/apple/swift/pull/11464" target="_blank" class="">https://github.com/apple/<wbr class="">swift/pull/11464</a><br class=""><div class=""><div class="gmail_extra"><br class=""><div class="gmail_quote">On Sat, Aug 12, 2017 at 8:23 PM, Taylor Swift <span dir="ltr" class="">&lt;<a href="mailto:kelvin13ma@gmail.com" target="_blank" class="">kelvin13ma@gmail.com</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr" class="">I’ve revised the proposal based on what I learned from trying to implement these changes. I think it’s worth tacking the existing methods that take <span style="font-family:monospace,monospace" class="">Sequence</span>s at the same time as this actually makes the design a bit simpler.<br class=""><div class="">&lt;<a href="https://gist.github.com/kelvin13/5edaf43dcd3d6d9ed24f303fc941214c" target="_blank" class="">https://gist.github.com/kelvi<wbr class="">n13/5edaf43dcd3d6d9ed24f303fc9<wbr class="">41214c</a>&gt;<br class=""><i class=""><br class=""></i><div style="margin-left:40px" class=""><i class="">The <a href="https://gist.github.com/kelvin13/1b8ae906be23dff22f7a7c4767f0c907" target="_blank" class="">previous version</a> of this document ignored the generic initialization methods on <code class="">UnsafeMutableBufferPointer</code> and <code class="">UnsafeMutableRawBufferPointer</code>,
 leaving them to be overhauled at a later date, in a separate proposal. 
Instead, this version of the proposal leverages those existing methods 
to inform a more compact API design which has less surface area, and is 
more future-proof since it obviates the need to design and add another 
(redundant) set of protocol-oriented pointer APIs later.</i></div></div></div><div class="m_-6780494060929294959gmail-HOEnZb"><div class="m_-6780494060929294959gmail-h5"><div class="gmail_extra"><br class=""><div class="gmail_quote">On Tue, Aug 8, 2017 at 12:52 PM, Taylor Swift <span dir="ltr" class="">&lt;<a href="mailto:kelvin13ma@gmail.com" target="_blank" class="">kelvin13ma@gmail.com</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr" class="">Since Swift 5 just got opened up for proposals, SE-184 Improved Pointers is ready for community review, and I encourage everyone to look it over and provide feedback. Thank you!<br class="">&lt;<a href="https://github.com/apple/swift-evolution/blob/master/proposals/0184-improved-pointers.md" target="_blank" class="">https://github.com/apple/swif<wbr class="">t-evolution/blob/master/propos<wbr class="">als/0184-improved-pointers.md</a>&gt;<br class=""></div></blockquote></div></div></div></div></blockquote></div></div></div></div></div></div></div></blockquote></div><div class=""><br class=""></div>Thanks for continuing to improve this proposal. It’s in great shape now.<div class=""><br class=""></div><div class="">Upon rereading it today I have to say I strongly object to the `count = 1` default in the following two cases:<div class=""><div class=""><br class=""></div><div class="">+ UnsafeMutablePointer.<wbr class="">withMemoryRebound(to: count: Int = 1)</div><div class="">+ UnsafeMutableRawPointer.<wbr class="">bindMemory&lt;T&gt;(to:T.Type, count:Int = 1)</div><div class="">&nbsp; -&gt; UnsafeMutablePointer&lt;T&gt;</div><div class=""><br class=""></div><div class="">To aid understanding, it needs to be clear at the call-site that binding memory only applies to the specified number of elements. It's a common mistake for users to think they can obtain a pointer to a different type, then use that pointer as a base to access other elements. These APIs are dangerous expert interfaces. We certainly don't want to make their usage more concise at the expense of clarity.</div><div class=""><br class=""></div><div class="">In general, I think there's very little value in the `count=1` default, and it creates potential confusion on the caller side between the `BufferPointer` API and the `Pointer` API. For example:</div><div class=""><br class=""></div><div class="">+ initialize(repeating:Pointee, count:Int = 1)</div><div class=""><br class=""></div><div class="">Seeing `p.initialize(repeating: x)`, the user may think `p` refers to the buffer instead of a pointer into the buffer and misunderstand the behavior.</div><div class=""><br class=""></div><div class="">+ UnsafeMutablePointer.<wbr class="">deinitialize(count: Int = 1)</div><div class=""><br class=""></div><div class="">Again, `p.deinitialize()` looks to me like it might be deinitializing an entire buffer.</div><div class=""><br class=""></div><div class="">If the `count` label is always explicit, then there's a clear distinction between the low-level `pointer` APIs and the `buffer` APIs.</div><div class=""><br class=""></div><div class="">The pointer-to-single-element case never seemed interesting enough to me to worry about making convenient. If I'm wrong about that, is there some real-world code you can point to where the count=1 default significantly improves clarity?</div></div><div class=""><br class=""></div></div><div class="">-Andy</div></div></blockquote></div><br class=""></div>
</div></blockquote></div><br class=""></body></html>