如何以简单的方式(例如)在Kotlin中链接/组成函数在Groovy中使用>>运算符? Groovy语法(请参阅http://groovy-lang.org/closures.html):
def plus2 = { it + 2 }
def times3 = { it * 3 }
// composition
def times3plus2 = plus2 << times3
assert times3plus2(3) == 11
assert times3plus2(4) == plus2(times3(4))
// reverse composition
assert times3plus2(3) == (times3 >> plus2)(3)
如何在Kotlin中做同样的事情?
答案 0 :(得分:1)
Kotlin语言没有这种内置功能,但是您可以在lambda上创建扩展功能来解决该问题:
/**
* Extension function joins two functions, using the result of the first function as parameter
* of the second one.
*/
infix fun <P1, R1, R2> ((P1) -> R1).then(f: (R1) -> R2): (P1) -> R2 {
return { p1: P1 -> f(this(p1)) }
}
infix fun <R1, R2> (() -> R1).then(f: (R1) -> R2): () -> R2 {
return { f(this()) }
}
/**
* Extension function is the exact opposite of `then`, using the result of the second function
* as parameter of the first one.
*/
infix fun <P1, R, P2> ((P1) -> R).compose(f: (P2) -> P1): (P2) -> R {
return { p1: P2 -> this(f(p1)) }
}
使用这些扩展功能,我们可以像您一样在Kotlin中编写代码:
val plus2: (Int) -> Int = { it + 2 }
val times3: (Int) -> Int = { it * 3 }
// composition
val times3plus2 = plus2 compose times3
assert(times3plus2(3) == 11)
assert(times3plus2(4) == plus2(times3(4)))
// reverse composition
assert(times3plus2(3) == (times3 then plus2)(3))
PS:有一个有用的库,称为funKTionale,它具有与扩展功能相似的扩展功能- forwardCompose 或 andThen 和 compose 。