Mark
08/31/2022, 10:30 AMcombine but for when the flows (arguments) are calculated based on the item in the main flow? My use case is a flow of Item s where each Item has a number of properties whose values are provided by flows. Initially those properties are null and so the operator I’m trying to implement, would transform an Item such that the properties are populated and the resulting Flow will emit a new Item each time any of the properties updates (as well as when the original flow emits a new Item).Trym Nilsen
08/31/2022, 11:33 AMval nameLength = username.map { name(a string type) -> name.length }Mark
08/31/2022, 11:36 AMonEach and then combines those.Trym Nilsen
08/31/2022, 11:41 AMMark
08/31/2022, 11:43 AMRobert Williams
08/31/2022, 12:01 PMflatMapLatest on the outer flow returning a zip/combine on the inner flows?Mark
08/31/2022, 12:52 PM