Is it possible to make reference to generic functions in Kotlin?
For example, let's say I have a function:
fun inline <reified T> appendToString(a: T, b: T) = a.toString() + b.toString
How can you reference this function? This will not compile
var a = ::appendToString<Int>