<@U0C2CG716> funktionale is a great lib and I have...
# language-proposals
r
@dalexander funktionale is a great lib and I have used it to do that. My question was in regards to special syntax to avoid boilerplate like this:
Copy code
val prefixAndPostfix = { prefix: String, x: String, postfix: String -> "$prefix$x$postfix" }
val helloX = prefixAndPostfix.partially1("Hello, ").partially2("!")
Since this is a common feature in other langs and Kotlin also support special syntax for lifting methods to functions and other functions related things I was wondering if
currying
or
partial application
was in the roadmap or it's just going to be up to libraries.