Rename: Clock.markNow, ClockMark.elapsedNow
Add "Now" suffix to the names of functions that depend on the current time moment.
This commit is contained in:
+4
-4
@@ -5270,24 +5270,24 @@ public final class kotlin/text/UStringsKt {
|
||||
public abstract class kotlin/time/AbstractDoubleClock : kotlin/time/Clock {
|
||||
public fun <init> (Ljava/util/concurrent/TimeUnit;)V
|
||||
protected final fun getUnit ()Ljava/util/concurrent/TimeUnit;
|
||||
public fun mark ()Lkotlin/time/ClockMark;
|
||||
public fun markNow ()Lkotlin/time/ClockMark;
|
||||
protected abstract fun read ()D
|
||||
}
|
||||
|
||||
public abstract class kotlin/time/AbstractLongClock : kotlin/time/Clock {
|
||||
public fun <init> (Ljava/util/concurrent/TimeUnit;)V
|
||||
protected final fun getUnit ()Ljava/util/concurrent/TimeUnit;
|
||||
public fun mark ()Lkotlin/time/ClockMark;
|
||||
public fun markNow ()Lkotlin/time/ClockMark;
|
||||
protected abstract fun read ()J
|
||||
}
|
||||
|
||||
public abstract interface class kotlin/time/Clock {
|
||||
public abstract fun mark ()Lkotlin/time/ClockMark;
|
||||
public abstract fun markNow ()Lkotlin/time/ClockMark;
|
||||
}
|
||||
|
||||
public abstract class kotlin/time/ClockMark {
|
||||
public fun <init> ()V
|
||||
public abstract fun elapsed ()D
|
||||
public abstract fun elapsedNow ()D
|
||||
public fun minus-LRDsOJo (D)Lkotlin/time/ClockMark;
|
||||
public fun plus-LRDsOJo (D)Lkotlin/time/ClockMark;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user