860544d299
#KT-5685 Obsolete
9 lines
179 B
Kotlin
Vendored
9 lines
179 B
Kotlin
Vendored
package test
|
|
|
|
class Measurements
|
|
{
|
|
inline fun measure(key: String, logEvery: Long = -1, divisor: Int = 1, body: () -> Unit): String {
|
|
body()
|
|
return key
|
|
}
|
|
} |