danny
fun <T : Any> T?.nullableReceiver() : T? = if (this == null) null else this
””.nullableReceiver()
String
String?