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

a8.shared.ops.LocalDateTimeOps.scala Maven / Gradle / Ivy

There is a newer version: 1.0.0-20230212_1012_master
Show newest version
package a8.shared.ops


import java.time.LocalDateTime
import scala.concurrent.duration.Duration

class LocalDateTimeOps(private val localDateTime: LocalDateTime) extends AnyVal {
  def +(duration: Duration): LocalDateTime = {
    localDateTime.plus(java.time.Duration.ofMillis(duration.toMillis))
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy