mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2025-07-10 20:41:11 +00:00
9 lines
226 B
Kotlin
9 lines
226 B
Kotlin
@file:Suppress("NOTHING_TO_INLINE")
|
|
|
|
package dev.inmo.micro_utils.coroutines
|
|
|
|
import kotlinx.coroutines.flow.Flow
|
|
import kotlinx.coroutines.flow.merge
|
|
|
|
inline operator fun <T> Flow<T>.plus(other: Flow<T>) = merge(this, other)
|