https://kotlinlang.org logo
r

ribesg

12/29/2015, 5:49 PM
If value is
String?
, is
map.put(key, value?.toLowercase())
the same as
map.put(key, value?.toLowercase() ?: null)
?