Roman Elizarov
1 min readMay 5, 2019

--

I’m not into future prediction business, but I don’t see much need for partial application in practice. In application business logic functions often have many parameters and their partial application rarely makes sense, because it is unlikely that you’d want to specifically partially apply them to the first parameter, not second or third. What I see instead in modern code is a stylistic trend to use lambdas even where bound method references could have been used (bound method references are a limited form of partial application that is supported by many languages today).

--

--

Roman Elizarov
Roman Elizarov

Written by Roman Elizarov

Project Lead for the Kotlin Programming Language @JetBrains

No responses yet