jdk8Main.common.PreciseDuration.jvm.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluid-time-jdk8 Show documentation
Show all versions of fluid-time-jdk8 Show documentation
Multiplatform date & time library
package io.fluidsonic.time
fun PreciseDuration.toPlatform(): PlatformPreciseDuration =
PlatformPreciseDuration.ofSeconds(seconds.toLong(), partialNanoseconds.toLong())
fun PlatformPreciseDuration.toCommon() =
PreciseDuration.of(seconds = seconds, nanoseconds = nano.toLong())