Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jjmmcc on github.
  • I am jeremycloud (https://keybase.io/jeremycloud) on keybase.
  • I have a public key whose fingerprint is 6DB8 00B4 071E 7A77 F23E 5163 272F 7105 FB3C 0B0C

To claim this, I am signing this object:

class ThreadLocal[T](init: => T) extends java.lang.ThreadLocal[T] with Function0[T] {
override def initialValue = init
def apply = get
}