Type Definition rxrust::ops::FlatMapOp[][src]

pub type FlatMapOp<Source, Inner, F> = FlattenOp<MapOp<Source, F>, Inner>;
Expand description

Returns an Observable that emits items based on applying a function that you supply to each item emitted by the source Observable, where that function returns an Observable, and then merging those resulting Observables and emitting the results of this merger.