commonMain.measurement.TimeMeasurement.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
import kotlin.time.*
import kotlin.time.Duration
interface TimeMeasurement> : TemporalMeasurement {
fun toDays(): Days
@ExperimentalTime
fun toDuration(): Duration
fun toHours(): Hours
fun toMicroseconds(): Microseconds
fun toMilliseconds(): Milliseconds
fun toMinutes(): Minutes
fun toNanoseconds(): Nanoseconds
fun toPreciseDuration(): PreciseDuration
fun toSeconds(): Seconds
companion object
interface CompanionInterface> : TemporalMeasurement.CompanionInterface
}