<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=""><div class="">:-( I'm worried about increasing the size of the language this much. I really want to be able to say "behaviors are just syntactic sugar for declaring accessors and storage, and then everything else behaves normally". This makes them another entirely orthogonal decl kind, like operators.</div><div class=""><br class=""></div><div class="">Jordan</div><br class=""><div><blockquote type="cite" class=""><div class="">On Dec 21, 2015, at 9:23 , Joe Groff 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 style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">I played around a bit with the idea of a special behavior declaration. I think it feels a lot nicer, though it also feels like a much bigger language change if we go this route. Inside the declaration, you need to specify:<div class="">- what accessors the behavior supports, to be implemented by properties using the behavior,</div><div class="">- if the behavior controls storage, what that storage is, and what initialization logic it requires,</div><div class="">- if the behavior requires an initializer, and whether that initializer is used eagerly at property initialization or deferred to later, and</div><div class="">- what operations the behavior offers, if any.</div><div class=""><br class=""></div><div class="">Here's a quick sketch of how a behavior declaration could look. As a strawman, I'll use 'var behavior' as the introducer for a property behavior (leaving the door open to 'func behavior', 'struct behavior', etc. in the possible future). If you were going to reinvent computed properties from whole cloth, that might look like this:</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><div class="">var behavior computed&lt;T&gt; {</div></div><div class="">&nbsp; // A computed property requires a `get` and `set` accessor.</div><div class=""><div class="">&nbsp; accessor get() -&gt; T</div></div><div class=""><div class="">&nbsp; accessor set(newValue: T)</div></div><div class=""><div class=""><br class=""></div></div><div class="">&nbsp; // Accessors for the property</div><div class=""><div class="">&nbsp; get { return get() }</div></div><div class=""><div class="">&nbsp; set { set(newValue) }</div></div><div class=""><div class="">}</div></div></blockquote><div class=""><div class=""><br class=""></div></div><div class="">lazy might look something like this:</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><div class="">var behavior lazy&lt;T&gt; {</div></div><div class="">&nbsp; // lazy requires an initializer expression, but it isn't</div><div class="">&nbsp; // used until after object initialization.</div><div class=""><div class="">&nbsp; deferred initializer: T</div></div><div class=""><div class=""><br class=""></div></div><div class="">&nbsp; // The optional storage for the property.</div><div class=""><div class="">&nbsp; var value: T?</div></div><div class=""><div class=""><br class=""></div></div><div class="">&nbsp; // Initialize the storage to nil.</div><div class=""><div class="">&nbsp; init() {</div></div><div class=""><div class="">&nbsp; &nbsp; value = nil</div></div><div class=""><div class="">&nbsp; }</div></div><div class=""><div class=""><br class=""></div></div><div class="">&nbsp; // Accessors for the property.</div><div class=""><div class="">&nbsp; mutating get {</div></div><div class=""><div class="">&nbsp; &nbsp; if let value = value {</div></div><div class=""><div class="">&nbsp; &nbsp; &nbsp; return value</div></div><div class=""><div class="">&nbsp; &nbsp; }</div></div><div class="">&nbsp; &nbsp; // `initializer` is implicitly bound to the initializer expr as a</div><div class="">&nbsp; &nbsp; // `@noescape () -&gt; T` within the behavior's members.</div><div class=""><div class="">&nbsp; &nbsp; let initialValue = initializer()</div></div><div class=""><div class="">&nbsp; &nbsp; value = initialValue</div></div><div class=""><div class="">&nbsp; &nbsp; return initialValue</div></div><div class=""><div class="">&nbsp; }</div></div><div class=""><div class=""><br class=""></div></div><div class=""><div class="">&nbsp; set {</div></div><div class=""><div class="">&nbsp; &nbsp; value = newValue</div></div><div class=""><div class="">&nbsp; }</div></div><div class=""><div class=""><br class=""></div></div><div class="">&nbsp; // clear() operation for the behavior.</div><div class=""><div class="">&nbsp; mutating func clear() {</div></div><div class=""><div class="">&nbsp; &nbsp; value = nil</div></div><div class=""><div class="">&nbsp; }</div></div><div class=""><div class="">}</div></div></blockquote><div class=""><div class=""><br class=""></div></div><div class="">Some behaviors like `lazy` and `resettable` want to take control of the storage to manage their semantics, but many behaviors are adapters independent of how the underlying behavior behaves. These kinds of behavior are easy to compose with other behaviors and to override base class properties with. You could use inheritance-like syntax to indicate a "wrapping" behavior like this, and commandeer `super` to refer to the underlying property. For instance, `synchronized`:</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><div class="">var behavior synchronized&lt;T&gt;: T {</div></div><div class=""><div class="">&nbsp; get {</div></div><div class=""><div class="">&nbsp; &nbsp; return sync { return super }</div></div><div class=""><div class="">&nbsp; }</div></div><div class=""><div class="">&nbsp; set {</div></div><div class=""><div class="">&nbsp; &nbsp; return sync { return super }</div></div><div class=""><div class="">&nbsp; }</div></div><div class=""><div class="">}</div></div></blockquote><div class=""><div class=""><br class=""></div></div><div class="">or `observing` didSet/willSet:</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><div class="">var behavior observing&lt;T&gt;: T {</div></div><div class=""><div class="">&nbsp; accessor willSet(oldValue: T, newValue: T) { }</div></div><div class=""><div class="">&nbsp; accessor didSet(oldValue: T, newValue: T) { }</div></div><div class=""><div class=""><br class=""></div></div><div class=""><div class="">&nbsp; get { return super }</div></div><div class=""><div class="">&nbsp; set {</div></div><div class="">&nbsp; &nbsp; let oldValue = super</div><div class=""><div class="">&nbsp; &nbsp; willSet(oldValue, newValue)</div></div><div class=""><div class="">&nbsp; &nbsp; super = newValue</div></div><div class=""><div class="">&nbsp; &nbsp; didSet(oldValue, newValue)</div></div><div class=""><div class="">&nbsp; }</div></div><div class=""><div class="">}</div></div></blockquote><div class=""><br class=""></div><div class="">If you want to refer back to the containing `self`, we could support that too, and by treating behavior functions specially we should be able to maintain coherent semantics for backreferencing value types as well. Implementing `synchronized` with a per-object lock could look like this:</div><div class=""><br class=""></div><div class=""><blockquote style="margin: 0px 0px 0px 40px; border: none; padding: 0px;" class=""><div class="">var behavior synchronizedByObject&lt;T&gt;: T where Self: Synchronizable {</div><div class="">&nbsp; get {</div><div class="">&nbsp; &nbsp; return self.withLock { return super }</div><div class="">&nbsp; }</div><div class="">&nbsp; set {</div><div class="">&nbsp; &nbsp; return self.withLock { return super }</div><div class="">&nbsp; }</div><div class="">}</div><div class=""><br class=""></div></blockquote>(though the juxtaposed meanings of `super` and `self` here are weird together…we'd probably want a better implicit binding name for the underlying property.)<div class=""></div></div><div class=""><br class=""></div><div class="">-Joe</div>
<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=ZEz4qHYnXhPr3bBPu-2FxP4tN3HfWKL-2FtJpqkQ0gkOVSCDrLGrM1PejaE1z-2F0L5HM4EQxbb-2BO-2BZIC8d7nxZrjaVvXvonf6WqOubgA7GbrUL1Iq1xyCsPj7C4kaw4dtvCA09h-2FiQgRgzJZEKS4isqGcNhGbOU7jP-2BQ42sOcBso-2F9nLF20jmOnzTLLYSaLwn9qI7j8-2BCqJWcLbu6Xriu3PwTncQveN0drLPy9MbkkS9-2BWwg-3D" alt="" width="1" height="1" border="0" style="height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;" class="">
</div>
_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></blockquote></div><br class=""></body></html>