azabost
11/15/2023, 1:35 PM::class
of a nullable reference?
I can do it this way: nullableVal?.let { it::class }
but I would like to know if there is a shorter version. It's a shame I can't just nullableVal?::class
instead, like I can with nullableVal?.javaClass
😅PHondogo
11/15/2023, 1:50 PMazabost
11/15/2023, 1:51 PMShawn
11/15/2023, 4:55 PM?.javaClass?.kotlin
but that's definitely kinda goofy-lookingephemient
11/16/2023, 9:40 AM?::