We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc85f51 commit ce64e79Copy full SHA for ce64e79
kotlinx-coroutines-core/common/src/flow/internal/Combine.kt
@@ -23,7 +23,7 @@ internal suspend fun <R, T> FlowCollector<R>.combineInternal(
23
val size = flows.size
24
if (size == 0) return@flowScope // bail-out for empty input
25
val latestValues = arrayOfNulls<Any?>(size)
26
- latestValues.fill(UNINITIALIZED) // Smaller bytecode & faster that Array(size) { UNINITIALIZED }
+ latestValues.fill(UNINITIALIZED) // Smaller bytecode & faster than Array(size) { UNINITIALIZED }
27
val resultChannel = Channel<Update>(size)
28
val nonClosed = LocalAtomicInt(size)
29
var remainingAbsentValues = size
0 commit comments