ValueTimeMark
A specialized kotlin.time.TimeMark returned by TimeSource.Monotonic time source.
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.
This time mark implements ComparableTimeMark and therefore is comparable with other time marks obtained from the same TimeSource.Monotonic time source.
Since Kotlin
1.7Functions
Returns the amount of time passed from this mark measured with the time source from which this mark was taken.
Returns false if this time mark has not passed according to the time source from which this mark was taken.
Returns true if this time mark has passed according to the time source from which this mark was taken.
Returns the duration elapsed between the other time mark and this
time mark.
Returns a time mark on the same time source that is behind this time mark by the specified duration.
Returns the duration elapsed between the other time mark obtained from the same TimeSource.Monotonic time source and this
time mark.
Returns a time mark on the same time source that is ahead of this time mark by the specified duration.