Skip to content

Instantly share code, notes, and snippets.

@yenerm
Created May 17, 2020 22:55
Show Gist options
  • Save yenerm/0ce0e6e3027b38f6fadff2b3e9395c58 to your computer and use it in GitHub Desktop.
Save yenerm/0ce0e6e3027b38f6fadff2b3e9395c58 to your computer and use it in GitHub Desktop.
Inline Reified function
inline fun <reified T> printType() {
print(T::class.java)
}
fun printStringType(){
//calling the reified generic function with String type
printType<String>()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment