If I have a generic method `run()` how can I use t...
# announcements
e
If I have a generic method
run()
how can I use the generic type parameter for the
reified
method
data()
?
Copy code
fun <T : Any>run(format: Format, testSamples: Array<T>) {
     textureA.data<T>(0, 0, 1)[i] = test
}