<div dir="ltr">I don&#39;t follow. What&#39;s a singleton/how? If you mean my example, the whole point/need for the feature is so it&#39;s not. I want `.value` to be unique storage for each subclass.</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 9, 2017 at 7:09 PM, Robert Widmann <span dir="ltr">&lt;<a href="mailto:rwidmann@apple.com" target="_blank">rwidmann@apple.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This is a singleton, it just happens to be in class scope.<br>
<span class="HOEnZb"><font color="#888888"><br>
~Robert Widmann<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
&gt; On Aug 9, 2017, at 3:55 AM, Mathew Huusko V via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; Curious if class stored properties have ever been discussed (doesn&#39;t seem so..)?<br>
&gt;<br>
&gt; Also, assuming no, and assuming there&#39;s a good reason no/they&#39;re not coming anytime soon, what are some patterns people have been using in their place? I was considering something like..<br>
&gt;<br>
&gt; class SomeClass {<br>
&gt;     private static var _classValues = [SomeClass.Type: Int]()<br>
&gt;<br>
&gt;     class var value: Int {<br>
&gt;         get { _classValues[self] }<br>
&gt;         set { _classValues[self] = newValue }<br>
&gt;     }<br>
&gt; }<br>
&gt;<br>
&gt; .. but then I remembered types aren&#39;t hashable yet either (so I guess I need to stringify it first).<br>
</div></div><div class="HOEnZb"><div class="h5">&gt; ______________________________<wbr>_________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
<br>
</div></div></blockquote></div><br></div>