Home
last modified time | relevance | path

Searched refs:with_flat_map (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/futures-util/src/sink/
Dmod.rs53 mod with_flat_map; module
54 pub use self::with_flat_map::WithFlatMap;
119 fn with_flat_map<U, St, F>(self, f: F) -> WithFlatMap<Self, Item, U, St, F> in with_flat_map() method
/external/rust/crates/futures/tests/
Dsink.rs407 fn with_flat_map() { in with_flat_map() function
412 let mut sink = Vec::new().with_flat_map(|item| stream::iter(vec![item; item]).map(Ok)); in with_flat_map()