Is it possible to create 2 functions with reified ...
# announcements
j
Is it possible to create 2 functions with reified type information that only discriminate on nullable return values? This seems unpossible:
Copy code
inline fun <reified T> ResultSet.get(columnIndex: Int): T {
        TODO()
    }

    inline fun <reified T> ResultSet.get(columnIndex: Int): T? {
        TODO()
    }