package at.hannibal2.skyhanni.utils import java.time.Instant import kotlin.time.Duration import kotlin.time.Duration.Companion.milliseconds @JvmInline value class SimpleTimeMark(val millis: Long) { operator fun minus(other: SimpleTimeMark) = (millis - other.millis).milliseconds operator fun plus(other: Duration) = SimpleTimeMark(millis + other.inWholeMilliseconds) fun passedSince() = if (millis == 0L) Duration.INFINITE else now() - this override fun toString(): String { if (millis == 0L) return "The Far Past" return Instant.ofEpochMilli(millis).toString() } companion object { fun now() = SimpleTimeMark(System.currentTimeMillis()) fun farPast() = SimpleTimeMark(0) } }