<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div><br><br>Sent from my iPad</div><div><br>On May 7, 2016, at 2:21 AM, Andrew Trick via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><meta http-equiv="Content-Type" content="text/html charset=utf-8"><br class=""><div><blockquote type="cite" class=""><div class="">On May 6, 2016, at 5:48 PM, Dave Abrahams 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=""><div class=""><blockquote type="cite" style="font-family: Helvetica; font-size: 12px; 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-stroke-width: 0px;" class="">I don’t mean to imply that it is the *only* valuable<br class="">property. However, it I (and many others) do believe it is an extremely valuable<br class="">property in many cases. Do you disagree?<br class=""></blockquote><br style="font-family: Helvetica; font-size: 12px; 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-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; 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-stroke-width: 0px; float: none; display: inline !important;" class="">I think I do. &nbsp;What is valuable about such a protocol? &nbsp;What generic</span><br style="font-family: Helvetica; font-size: 12px; 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-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; 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-stroke-width: 0px; float: none; display: inline !important;" class="">algorithms could you write that work on models of PureValue but don't</span><br style="font-family: Helvetica; font-size: 12px; 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-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; 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-stroke-width: 0px; float: none; display: inline !important;" class="">work just as well on Array&lt;Int&gt;?</span></div></div></blockquote></div><br class=""><div class=""><div class="">class Storage {</div><div class="">&nbsp; var element: Int = 0</div><div class="">}</div><div class=""><br class=""></div><div class="">struct Value {</div><div class="">&nbsp; var storage: Storage</div><div class="">}</div><div class=""><br class=""></div><div class="">func amIPure(v: Value) -&gt; Int {</div><div class="">&nbsp; v.storage.element = 3</div><div class="">&nbsp; return v.storage.element</div><div class="">}</div><div class=""><br class=""></div><div class="">I (the optimizer) want to know if 'amIPure' is a pure function. The developer needs to tell me where the boundaries of the value lie. Does 'storage' lie inside the Value, or outside? If it is inside, then Value is a 'PureValue' and 'amIPure' is a pure function. To enforce that, the developer will need to implement CoW, or we need add some language features.</div></div></div></blockquote><div><br></div><div>Thank you for this clear exposition of how PureValue relates to pure functions. &nbsp;This is the exact intuition I have about it but you have stated it much more clearly.</div><div><br></div><div>Language features to help automate CoW would be great. &nbsp;It would eliminate boilerplate, but more importantly it would likely provide more information to the compiler.</div><br><blockquote type="cite"><div><div class=""><div class=""><br class=""></div><div class="">If I know about every operation inside 'amIPure', and know where the value's boundary is, then I don't really need to know that 'Value' is a 'PureValue'. For example, I know that this function is pure without caring about 'PureValue'.</div><div class=""><br class=""></div><div class="">func IAmPure(v: Value, s: Storage) -&gt; Int {</div><div class="">&nbsp; var t = v</div><div class="">&nbsp; t.storage = s</div><div class="">&nbsp; return t.storage.element</div><div class="">}</div><div class=""><br class=""></div><div class="">However, I might only have summary information. I might know that the function only writes to memory reachable from Value. In that case, it would be nice to have summary information about the storage type. 'PureValue' is another way of saying that it does not contain references to objects outside the value's boundary (I would add that it cannot have a user-defined deinit). The only thing vague about that is that we don't have a general way for the developer to define the value's boundary. It certainly should be consistent with '==', but implementing '==' doesn't tell the optimizer anything.</div></div></div></blockquote><div><br></div><div>I think the ability to define the value's boundary would be wonderful. &nbsp;If we added a way to do this it would be a requirement of PureValue.</div><br><blockquote type="cite"><div><div class=""><div class=""><br class=""></div><div class="">Anyway, these are only optimizer concerns, and programming model should take precedence in these discussion. But I thought that might help.</div></div></div></blockquote><blockquote type="cite"><div><div class=""><br class=""></div><div class="">-Andy</div></div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br></div></blockquote></body></html>