<div dir="ltr">Curious if class stored properties have ever been discussed (doesn&#39;t seem so..)?<div><br></div><div>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..</div><div><br></div>class SomeClass {<br>    private static var _classValues = [SomeClass.Type: Int]()<br><br>    class var value: Int {<br>        get { _classValues[self] }<br>        set { _classValues[self] = newValue }<br>    }<br>}<div><br></div><div>.. but then I remembered types aren&#39;t hashable yet either (so I guess I need to stringify it first).</div></div>