robin
03/09/2017, 4:50 PM!!
indeed has a special position here.
foo.notNullable()
.somethingNullable()!!
.somethingElseNullable()
?.finalCall()
also looks better than
foo.notNullable()
.somethingNullable()
!!.somethingElseNullable()
?.finalCall()
imo.