Join Slack
Communities
Powered by
``` operator fun Int?.plus(o: Int) = if (this ...
# announcements
w
wcaokaze
03/06/2018, 1:35 PM
Copy code
operator fun Int?.plus(o: Int) = if (this == null) o else this + o
Open in Slack
Previous
Next