Kotlin - 推断两个泛型参数之一的类型
Kotlin - Infer type for one of two generic parameters
我正在尝试创建一个具有两种泛型类型的函数:一种是具体化的,另一种是从其使用上下文派生的(因为它是一个扩展函数):
inline fun <reified E, A> Either<Throwable, A>.bypassLeft(transformation: Throwable.() -> A): Either<Throwable, A> =
when (this) {
is Either.Left -> when (value) {
is E -> value.transformation().right()
else -> this
}
else -> this
}
我们的想法是调用仅提及具体化类型的函数,例如:
a.bypassLeft<NoResultException> { "" }
其中“a”是 Either 类型的对象
但是编译器不允许我放弃它,并要求我指定两种泛型类型,而不是从调用函数的对象派生第二个类型。
这似乎是一件很合理的事情,但也许我错了...
这可以实现吗?如果是这样,我做错了什么?
目前无法使用一个函数来归因于单个类型参数,而让另一个类型参数被推断。如果您通过将实现更改为不使用接收器类型来键入 lambda 参数,则可以实现您想要的效果。
我在那里添加了一个额外的实现,它显示了类型参数如何也可以部分应用于 class 或其他周围范围。
import arrow.core.Either
import arrow.core.right
inline fun <reified E : Throwable, A> Either<Throwable, A>.bypassLeft(
transformation: (E) -> A //changed to regular arg not receiver
): Either<Throwable, A> =
when (this) {
is Either.Left -> when (val v = value) { //name locally for smart cast
is E -> transformation(v).right()
else -> this
}
else -> this
}
class Catch<A>(val f: () -> A) { //alternative impl with partial type app
inline fun <reified E : Throwable> recover(
recover: (E) -> A
): Either<Throwable, A> =
Either.catch(f).fold(
{
if (it is E) Either.Right(recover(it))
else Either.Left(it)
},
{
Either.Right(it)
}
)
}
suspend fun main() {
val x: Either<Throwable, Int> = Either.Left(WhosebugError())
val recovered = x.bypassLeft {
s: WhosebugError -> //here infers E
0 // here infers A
}
println(recovered) // Either.Right(0)
val notRecovered: Either<Throwable, Int> =
Catch {
throw NumberFormatException()
1
}.recover<WhosebugError> { 0 }
println(notRecovered) // Either.Left(java.lang.NumberFormatException)
}
我正在尝试创建一个具有两种泛型类型的函数:一种是具体化的,另一种是从其使用上下文派生的(因为它是一个扩展函数):
inline fun <reified E, A> Either<Throwable, A>.bypassLeft(transformation: Throwable.() -> A): Either<Throwable, A> =
when (this) {
is Either.Left -> when (value) {
is E -> value.transformation().right()
else -> this
}
else -> this
}
我们的想法是调用仅提及具体化类型的函数,例如:
a.bypassLeft<NoResultException> { "" }
其中“a”是 Either
但是编译器不允许我放弃它,并要求我指定两种泛型类型,而不是从调用函数的对象派生第二个类型。 这似乎是一件很合理的事情,但也许我错了...
这可以实现吗?如果是这样,我做错了什么?
目前无法使用一个函数来归因于单个类型参数,而让另一个类型参数被推断。如果您通过将实现更改为不使用接收器类型来键入 lambda 参数,则可以实现您想要的效果。
我在那里添加了一个额外的实现,它显示了类型参数如何也可以部分应用于 class 或其他周围范围。
import arrow.core.Either
import arrow.core.right
inline fun <reified E : Throwable, A> Either<Throwable, A>.bypassLeft(
transformation: (E) -> A //changed to regular arg not receiver
): Either<Throwable, A> =
when (this) {
is Either.Left -> when (val v = value) { //name locally for smart cast
is E -> transformation(v).right()
else -> this
}
else -> this
}
class Catch<A>(val f: () -> A) { //alternative impl with partial type app
inline fun <reified E : Throwable> recover(
recover: (E) -> A
): Either<Throwable, A> =
Either.catch(f).fold(
{
if (it is E) Either.Right(recover(it))
else Either.Left(it)
},
{
Either.Right(it)
}
)
}
suspend fun main() {
val x: Either<Throwable, Int> = Either.Left(WhosebugError())
val recovered = x.bypassLeft {
s: WhosebugError -> //here infers E
0 // here infers A
}
println(recovered) // Either.Right(0)
val notRecovered: Either<Throwable, Int> =
Catch {
throw NumberFormatException()
1
}.recover<WhosebugError> { 0 }
println(notRecovered) // Either.Left(java.lang.NumberFormatException)
}