<https://kotlinlang.org/docs/reference/typecasts.h...
# announcements
s
https://kotlinlang.org/docs/reference/typecasts.html#unsafe-cast-operator I can't seem to grok the difference between
val x: String? = y as? String
and
val x: String? = y as String?
. Anyone got an example that might help me understand? ❤️