Adrien Poupard
07/27/2021, 9:23 AMclass Lambda: (String) -> String {
override fun invoke(p1: String): String {
TODO("Not yet implemented")
}
}
Would it be possible to add the feature to do?
class SuspendLambda: suspend (String) -> String {
override suspend fun invoke(p1: String): String {
TODO("Not yet implemented")
}
}
mateusz.kwiecinski
07/27/2021, 9:27 AMAdrien Poupard
07/27/2021, 9:30 AMlanguageVersion = "1.6"
mean that this feature will be released with kotlin 1.6?
Will we have a change to have it in the next 1.5.* versions?elizarov
07/29/2021, 9:09 PM