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

commonMain.LocalDate.kt Maven / Gradle / Ivy

There is a newer version: 0.18.0
Show newest version
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()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy