Paul Weber
01/05/2022, 9:58 PMfunc foo(_ arg: Bar) {}
.
I.e., you can just foo(myArg)
instead of having to foo(arg: myArg)
It’s probably not possible to declare a function in kotlin that behaves the same way at the swift callsite, right?russhwolf
01/05/2022, 10:04 PMfunc foo(_ receiver: Bar)
ephemient
01/05/2022, 10:06 PMrusshwolf
01/05/2022, 10:08 PM@JvmName
and @JvmOverloads
analogs in native