Quick general question, do I understand correctly ...
# announcements
r
Quick general question, do I understand correctly that
val a = b as? String
and
val a = b as String?
are basically the same, unless
b
is an instance of a class other than
String?
?