Skip to content

Instantly share code, notes, and snippets.

@MarioAriasC
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarioAriasC/36fbd55a1d9c392a48a1 to your computer and use it in GitHub Desktop.
Save MarioAriasC/36fbd55a1d9c392a48a1 to your computer and use it in GitHub Desktop.
New funKTionale partials
[Test] fun partials() {
val sum5ints = {(a: Int, b: Int, c: Int, d: Int, e: Int) -> a + b + c + d + e }
val sum4intsTo10: (Int, Int, Int, Int) -> Int = sum5ints(p5 = 10)
val sum3intsTo15: (Int, Int, Int) -> Int = sum4intsTo10(p4 = 5)
val sum2intsTo17: (Int, Int) -> Int = sum3intsTo15(p3 = 2)
assertEquals(sum2intsTo17(1, 2), 20)
val prefixAndPostfix = {(prefix: String, x: String, postfix: String) -> "${prefix}${x}${postfix}" }
val helloX: (String) -> String = prefixAndPostfix(p1 = "Hello, ")(p2 ="!")
assertEquals(helloX("funKTionale"), "Hello, funKTionale!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment