ran into this in <#C136UUPE1|tornadofx>, how is th...
# language-proposals
g
ran into this in #tornadofx, how is this not part of the standard lib?
Copy code
fun <T> threadLocal(initializer: () -> T): ReadWriteProperty<*, T> = TODO()
usage:
Copy code
class Thingy {
  val x by threadLocal { ByteArray(20) }
}