Kotlin has nice syntax for functions with one trailing lambda argument. But in some cases I’ve noticed how I ended up adding multiple lambda arguments to a function, and this seems like code smell to me, also because there’s no dedicated syntax for multiple lambdas, indicating to me that that case was not considered desirable/okay.
Is there a legitimate case where such multiple lambda arguments are necessary? Or is there a rule of thumb that if you need to pass more than one lambda you should define an interface & use an object expression instead? Which option is more “idiomatic” in Kotlin?
I don’t think multiple lambdas is necessarily bad, nor that Kotlin’s designers were trying to deliberately discourage it.
I just think that in practice the need for them is sufficiently rare that it wasn’t worth coming up with a special syntax for them.⠀(I can’t recall ever using them myself.)
Especially as the existing syntax isn’t particularly unwieldy:
function({ /*lambda1*/ }, { /*lambda2*/ })
(In practice you’d probably want to use line-breaks to separate them, of course.)
And don’t forget that you can give a default value for a function parameter, just like any other parameter.⠀So you might not need to provide more than one lambda, even when you can.⠀(Though remember that when outside parens, a lambda is taken as the last argument, so if you have two params with the same function type, take care!)
I don’t think that is the case. The way I see it functions that take a single lambda argument are just so common that we got this nice syntax. That does not mean that functions taking muliple lambdas are bad or wrong.
Not really. I personally can’t remeber many usecases for this so I don’t know which is more common. I guess it depends. If you are writing a libary that you expect people to use from java (as well as kotlin) going with interfaces is probably a good idea just to make your API easier to use from java.
On the other hand you might want to use inline functions in which case you have to go with multiple lambdas. I’d probably say that using multiple lambda parameters is the kotlin style of doing this but I would not enforce this for libaries since they need to consider java interop.