Is it possible to use generic type on a high order...
# announcements
i
Is it possible to use generic type on a high order function? Like this? I need the type of the "function" to be inferred.
d
Copy code
fun <T> someFunction(function: () -> T)
4