What is Trailing Lambda and Comma in Kotlin?
Trailing lambda is something new in Kotlin that other programming language doesn't have. At least, I do not aware of any other programming language that supports it.
When you see code like this:
var result = operateOnNumbers(a, b) { input1, input2 ->...
vtsen.hashnode.dev2 min read