6287968511
Also introduce two different modes for those tests: - load metadata compiled with K1 - load metadata compiled with K2
55 lines
1.3 KiB
Plaintext
Vendored
55 lines
1.3 KiB
Plaintext
Vendored
public final inline fun <T> R|T|.also(block: R|(T) -> kotlin/Unit|): R|T|
|
|
[R|Contract description]
|
|
<
|
|
CallsInPlace(block, EXACTLY_ONCE)
|
|
>
|
|
|
|
|
|
public final inline fun <T> R|T|.apply(block: R|T.() -> kotlin/Unit|): R|T|
|
|
[R|Contract description]
|
|
<
|
|
CallsInPlace(block, EXACTLY_ONCE)
|
|
>
|
|
|
|
|
|
public final inline fun <T, R> R|T|.let(block: R|(T) -> R|): R|R|
|
|
[R|Contract description]
|
|
<
|
|
CallsInPlace(block, EXACTLY_ONCE)
|
|
>
|
|
|
|
|
|
public final inline fun repeat(times: R|kotlin/Int|, action: R|(kotlin/Int) -> kotlin/Unit|): R|kotlin/Unit|
|
|
[R|Contract description]
|
|
<
|
|
CallsInPlace(action, UNKNOWN)
|
|
>
|
|
|
|
|
|
public final inline fun <R> run(block: R|() -> R|): R|R|
|
|
[R|Contract description]
|
|
<
|
|
CallsInPlace(block, EXACTLY_ONCE)
|
|
>
|
|
|
|
|
|
public final inline fun <T, R> R|T|.run(block: R|T.() -> R|): R|R|
|
|
[R|Contract description]
|
|
<
|
|
CallsInPlace(block, EXACTLY_ONCE)
|
|
>
|
|
|
|
|
|
public final inline fun <T> R|T|.takeIf(predicate: R|(T) -> kotlin/Boolean|): R|T?|
|
|
[R|Contract description]
|
|
<
|
|
CallsInPlace(predicate, EXACTLY_ONCE)
|
|
>
|
|
|
|
|
|
public final inline fun <T, R> with(receiver: R|T|, block: R|T.() -> R|): R|R|
|
|
[R|Contract description]
|
|
<
|
|
CallsInPlace(block, EXACTLY_ONCE)
|
|
>
|