Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 225 Bytes

File metadata and controls

13 lines (8 loc) · 225 Bytes

Kurry

Kurry provides curry functions for currying in Kotlin.

data class Foo(val i: Int, val b: Boolean, val s: String) {}

val foo = curry(::Foo)(42)(true)("ABC")

License

The MIT License