commonMain.components.DateTimeComponent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluid-time-iosarm64 Show documentation
Show all versions of fluid-time-iosarm64 Show documentation
multiplatform date & time library
The newest version!
package com.github.fluidsonic.fluid.time
interface DateTimeComponent, Measurement : TemporalMeasurement> : Comparable {
fun map(transform: (Long) -> Long): Component
operator fun minus(other: Measurement): Component
operator fun minus(other: Component): Measurement
operator fun plus(other: Measurement): Component
fun toInt(): Int
fun toLong(): Long
companion object
interface CompanionInterface> {
val max: Component
val min: Component
fun of(value: Long): Component
}
}