domfox
10/20/2017, 1:31 PMinline fun <reified T> doSomethingThatEndsUpCallingToTypedArray(input: Foo<T>): Array<T> = input.getListOfT().toTypedArray()
and a function, intended to be callable from Java, in which I explicitly pass the type
fun <T> useExplicitlyPassedClass(input: Foo<T>, fooType: Class<T>): Array<T> = ...?