hi all
I have a question about Kotlin ABI
Is function parameters a part of ABI?
In java, when I change a parameter name, I see that the compile avoidance is applied, however, it isn't when I try with Kotlin
✅ 1
v
Vampire
09/16/2024, 12:21 PM
As you can use named arguments when you call the function, it would be strange if not.
l
Lam Pham
09/16/2024, 12:27 PM
oh yeah, I was trying to find a usage scenario for the parameters but forgot this named arguments feature
So it makes sense now to me. Thanks