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

jdk8Main.common.PreciseDuration.jvm.kt Maven / Gradle / Ivy

There is a newer version: 0.9.20
Show newest version
package io.fluidsonic.time


fun PreciseDuration.toPlatform(): PlatformPreciseDuration =
	PlatformPreciseDuration.ofSeconds(seconds.toLong(), partialNanoseconds.toLong())


fun PlatformPreciseDuration.toCommon() =
	PreciseDuration.of(seconds = seconds, nanoseconds = nano.toLong())




© 2015 - 2024 Weber Informatics LLC | Privacy Policy