8 lines
287 B
Plaintext
Vendored
8 lines
287 B
Plaintext
Vendored
fun with1(receiver: Any?, block: @ExtensionFunctionType @ExtensionFunctionType Function1<Any?, Unit>) {
|
|
return block.invoke(p1 = receiver)
|
|
}
|
|
|
|
fun with2(receiver: Any?, block: @ExtensionFunctionType @ExtensionFunctionType Function1<Any?, Unit>) {
|
|
return block.invoke(p1 = receiver)
|
|
}
|