Is there a way in inline reified generic function ...
# announcements
r
Is there a way in inline reified generic function to check if
<T>
is nullable or not?
Copy code
inline fun <reified T : Any?> calc(p: String): T {
    // check if T is nullable or not
}