Join Slack
Powered by
Or in an expression like this: ```val a = b ?: tho...
# announcements
k
karelpeeters
06/11/2018, 1:02 AM
Or in an expression like this:
Copy code
val a = b ?: thow Exceprion()
that just gets compiled to
Copy code
if (b == null) throw Exception() val a = b
and the
Nothing
type was just some syntax sugar.
Open in Slack
Previous
Next