times
Produces a date-time unit that is a multiple of this unit times the specified integer scalar value.
Throws
if the result overflows.
Samples
import kotlinx.datetime.*
import kotlin.test.*
import kotlin.time.Duration.Companion.hours
fun main() {
//sampleStart
// Obtaining a measurement unit that's several times larger than another one
val twoWeeks = DateTimeUnit.WEEK * 2
check(twoWeeks.days == 14)
//sampleEnd
}