genovich
09/02/2020, 9:01 AMList<Deffered<T>>
• List<suspend () -> T>
octylFractal
09/02/2020, 9:02 AMgenovich
09/02/2020, 9:03 AMFlow
, if I want this operation to produce multiple values?octylFractal
09/02/2020, 9:05 AMList<Flow<T>>
or just a Flow<T>
? either works, they're just slightly differentgenovich
09/02/2020, 9:05 AMoctylFractal
09/02/2020, 9:06 AMDeferred
, Flow
is usually cold/lazy, so I think using it directly is correct theregenovich
09/02/2020, 9:08 AMfun x(): suspend () -> T
? Or there may be a better syntax?octylFractal
09/02/2020, 9:09 AMgenovich
09/02/2020, 9:16 AM