example use case: serialization let we have `val l...
# announcements
s
example use case: serialization let we have
val list: List<String> = listOf("hello", "world")
and
inline fun <T: Any> DataOutput.write(obj: T)
call it as
out.write(list)
is it possible to get type parameter of
List
in our function?