Hm, thinking about that, I think the `!!` indeed h...
# codingconventions
r
Hm, thinking about that, I think the
!!
indeed has a special position here.
Copy code
foo.notNullable()
    .somethingNullable()!!
    .somethingElseNullable()
    ?.finalCall()
also looks better than
Copy code
foo.notNullable()
    .somethingNullable()
    !!.somethingElseNullable()
    ?.finalCall()
imo.
3