gpt4 book ai didi

kotlin - 如何在 Kotlin 中将 Flow> 转换为 Flow

转载 作者:行者123 更新时间:2023-12-03 08:17:00 24 4
gpt4 key购买 nike

我得到类型为 Flow<List<T>> 的流程我需要获得 Flow<T> 类型的流程摆脱它。

我尝试过:

outerFlow.onEach { items -> items.onEach { flow { emit(it) } }

这不起作用。我怎样才能实现这个目标?

最佳答案

参见docs对于flatMapConcat:

outerFlow.flatMapConcat { it.asFlow() }

关于kotlin - 如何在 Kotlin 中将 Flow<List<T>> 转换为 Flow<T>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69058511/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com