raulraja
09/26/2017, 8:29 PMval 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.