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

com.avsystem.commons.concurrent.DurationPostfixConverters.scala Maven / Gradle / Ivy

There is a newer version: 2.22.0
Show 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