Michael de Kaste
12/19/2021, 12:42 PMfunctionThatReturnsNullable() ?: doOnNull() followed by continue
elizarov
12/19/2021, 12:47 PMfunctionThatReturnsNullable() ?:
run { doOnNull(); continue }
Michael de Kaste
12/19/2021, 12:48 PMMichael de Kaste
12/19/2021, 12:49 PMMichael de Kaste
12/19/2021, 12:49 PMelizarov
12/19/2021, 12:50 PMMichael de Kaste
12/19/2021, 12:57 PMephemient
12/19/2021, 3:38 PMfor (scanner in generateSequence { scanners.removeFirstOrNull() }) {
findOrientationThatFits()?.run {
...
} ?: scanners.add(scanner)
}