I love the reified types. that's why I for example...
# tornadofx
t
I love the reified types. that's why I for example created the function
Copy code
inline fun <reified T: App> launch(vararg strings: String) =Application.launch(T::class.java, *strings)
so you can use it like
Copy code
launch<MyApp>()
Another call I would like is adding generics to the constructor, so you can use
Copy code
MyApp: App<MyView>()
instead of
Copy code
MyApp: App(MyView::class)
this can not be done from outside the code of tornadofx itself, so my question is, is this a direction we would like to go?