All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pimpathon.threadLocal.scala Maven / Gradle / Ivy

The newest version!
package pimpathon


object threadLocal extends threadLocal

trait threadLocal {
  def create[A](initial: A): ThreadLocal[A] = new ThreadLocal[A] {
    override def initialValue: A = initial
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy