data: add TimeBridge helpers for epoch-millis ↔ kotlin.time.Instant

This commit is contained in:
2026-06-08 17:35:49 +02:00
parent a826e82bdc
commit 1b456d2133
4 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package de.jeanlucmakiola.calendula.data.calendar
import kotlin.time.Instant
fun Long.toKotlinInstantFromEpochMillis(): Instant = Instant.fromEpochMilliseconds(this)
fun Instant.toEpochMillis(): Long = toEpochMilliseconds()