On this page
ValueTimeMark
@ExperimentalTime inline class ValueTimeMark : TimeMark
A specialized kotlin.time.TimeMark returned by TimeSource.Monotonic.
This time mark is implemented as an inline value class wrapping a platform-dependent time reading value of the default monotonic time source, thus allowing to avoid additional boxing of that value.
The operations plus and minus are also specialized to return ValueTimeMark type.
Functions
elapsedNow
Returns the amount of time passed from this mark measured with the time source from which this mark was taken.
fun elapsedNow(): Duration
hasNotPassedNow
Returns false if this time mark has not passed according to the time source from which this mark was taken.
fun hasNotPassedNow(): Boolean
hasPassedNow
Returns true if this time mark has passed according to the time source from which this mark was taken.
fun hasPassedNow(): Boolean
© 2010–2022 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.time/-time-source/-monotonic/-value-time-mark/index.html