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

scalacss.internal.mutable.Mutex.scala Maven / Gradle / Ivy

The newest version!
package scalacss.internal.mutable

// =================
// ====         ====
// ====   JVM   ====
// ====         ====
// =================

final class Mutex {
  def apply[A](f: => A): A =
    synchronized(f)
}

object Mutex {
  implicit def mutex: Mutex = new Mutex
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy