<p dir="ltr">We already have lazy properties to get what you are describing. But we need to wait for the Properties Behavior for the ability to clean a precomputed lazy var.</p>
<br><div class="gmail_quote"><div dir="ltr">Em sáb, 7 de mai de 2016 11:27, Jonathan Hull via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; escreveu:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">I saw a message come across about Memoization, and I thought of using a slightly different approach for similar benefit.<div><br></div><div>I commonly want to store the result of a complex calculation in a private variable in a struct to avoid recalculation cost… but now I have to mark that calculation as *mutating* even though it isn’t really mutating in the semantic sense (since it will have the same value). It is an implementation detail leaking out… the caller shouldn’t care if I am memoizing.</div><div><br></div><div>Also, my attempt to speed things up may have actually slowed things down, since a bunch of other stuff had to be copied...</div><div><br></div><div>It would be nice to mark a calculated property of a struct as “memo&quot; so that the calculation result is stored… but the calculation shouldn’t need to be marked as mutable (unless it actually mutates other things).  That memo should be automatically cleared whenever an actual mutating method is called on the struct.</div><div><br></div><div>Ideally, the compiler would eventually be smart enough to only clear the memos when properties used in the calculations change, but I think just clearing it whenever the struct is mutated is a good first step.</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div>struct MyStruct {</div><div>    var a:Int</div><div>    var b:Int</div><div><br></div><div>    memo var c {</div><div><span style="white-space:pre-wrap">        </span>//Complex calculation here</div><div>    }</div><div>}</div><div><br></div><div>let s = MyStruct(a:2, b:3)</div><div>print(s.c) // result of c is automatically memoized</div><div>print(s.c) // returns memoized result</div><div>s.a = 5 //This clears the memo for c as it may affect the calculation</div><div>print(s.c) // New result of c is automatically memoized</div></blockquote><div><br></div><div><br></div><div>The other alternative is to do things manually.  Letting the programmer declare special private variables on a struct that are allowed to mutate without the “mutating” key word.  That is potentially more powerful, but also more error prone.  I prefer the set-it-and-forget-it approach.</div><div><br></div><div>If “memo&quot; is the wrong word for this, I am completely open to calling it something else.  I would really like to see this functionality in Swift 3 though (whatever it is called).</div><div><br></div><div>Thanks,</div><div>Jon</div></div>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div>