
com.avsystem.commons.concurrent.DurationPostfixConverters.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-core_2.12 Show documentation
Show all versions of commons-core_2.12 Show documentation
AVSystem commons library for Scala
The newest version!
package com.avsystem.commons
package concurrent
import scala.concurrent.duration._
trait DurationPostfixConverters {
implicit def durationInt(int: Int): DurationInt = new DurationInt(int)
implicit def durationLong(long: Long): DurationLong = new DurationLong(long)
implicit def durationDouble(double: Double): DurationDouble = new DurationDouble(double)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy