<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="">Here’s an idea using enums. They work similar to a lens, where they are separate from the actual instance. So you can convert string keys or validate potential values without needing an instance.</div><div class=""><br class=""></div><div class="">The PropertyIdentifierProtocol is implemented by an string representable enum, piggy backing on its failable initializer for converting from strings.</div><div class="">The PropertyStateProtocol, implemented by an enum with associated values, encapsulates a property in a type-safe manner, allowing it to be extracted as an entity then applied to other instances. It has a failable initializer for validating a value.</div><div class=""><br class=""></div><div class=""><a href="https://gist.github.com/BurntCaramel/315ee4dfca0c240755b534e1a5ee183f" class="">https://gist.github.com/BurntCaramel/315ee4dfca0c240755b534e1a5ee183f</a></div><div class=""><br class=""></div><br class=""><div><blockquote type="cite" class=""><div class="">On 27 May 2016, at 11:30 PM, Matthew Johnson 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=""><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="">Property descriptors could be useful in the sense that they wouldn't need to refer back to the instance. &nbsp;But I would also like to see a way to get something like a lens into the property for a specific instance which is what the views allow for. &nbsp;This design doesn't allow for that. &nbsp;Maybe we want to allow you to query for property descriptors alone, lenses alone, or the combination in a view.</span></div></blockquote></div><br class=""></body></html>