Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 1367dc4

Browse files
TODO: related issue Kotlin/kotlinx.coroutines#3938
1 parent f5abd7b commit 1367dc4

File tree

1 file changed

+3
-3
lines changed
  • src/commonMain/kotlin/com/hoc081098/flowext

1 file changed

+3
-3
lines changed

‎src/commonMain/kotlin/com/hoc081098/flowext/eager.kt‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import kotlinx.coroutines.launch
4848
* Returns a flow containing the results of applying the given [transform] function.
4949
* Transformations performed parallel with given [concurrency] limit and preserving the order of elements.
5050
*/
51-
@FlowPreview
51+
@FlowPreview// TODO: related issue https://github.com/Kotlin/kotlinx.coroutines/issues/3938
5252
@ExperimentalCoroutinesApi
5353
public fun <T, R> Flow<T>.mapEager(
5454
concurrency: Int = DEFAULT_CONCURRENCY,
@@ -79,7 +79,7 @@ public fun <T, R> Flow<T>.mapEager(
7979
* a positive channel capacity or one of the constants defined in [Channel]. If inner [Flow] tries to emit
8080
* more than [bufferSize] values before being concatenated to output, then it will be suspended
8181
*/
82-
@FlowPreview
82+
@FlowPreview// TODO: related issue https://github.com/Kotlin/kotlinx.coroutines/issues/3938
8383
@ExperimentalCoroutinesApi
8484
public fun <T, R> Flow<T>.flatMapConcatEager(
8585
concurrency: Int = DEFAULT_CONCURRENCY,
@@ -109,7 +109,7 @@ public fun <T, R> Flow<T>.flatMapConcatEager(
109109
* a positive channel capacity or one of the constants defined in [Channel]. If [Flow] tries to emit
110110
* more than [bufferSize] values before being concatenated to output, then it will be suspended
111111
*/
112-
@FlowPreview
112+
@FlowPreview// TODO: related issue https://github.com/Kotlin/kotlinx.coroutines/issues/3938
113113
@ExperimentalCoroutinesApi
114114
public fun <T> Flow<Flow<T>>.flattenConcatEager(
115115
concurrency: Int = DEFAULT_CONCURRENCY,

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /