commonMain.LocalDate.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluid-time-macosx64 Show documentation
Show all versions of fluid-time-macosx64 Show documentation
Kotlin multiplatform date & time library
package io.fluidsonic.time
import kotlinx.datetime.*
public fun LocalDate.atTime(time: LocalTime): LocalDateTime =
time.atDate(this)
public fun LocalDate.Companion.parseOrNull(isoString: String): LocalDate? =
runCatching { parse(isoString) }.getOrNull()