Last active
August 29, 2015 14:06
-
-
Save MarioAriasC/36fbd55a1d9c392a48a1 to your computer and use it in GitHub Desktop.
New funKTionale partials
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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