Home
last modified time | relevance | path

Searched refs:map_into (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/itertools/tests/
Dspecializations.rs91 fn map_into(v: Vec<u8>) -> () {
92 test_specializations(&v.into_iter().map_into::<u32>());
/external/rust/crates/itertools/src/adaptors/
Dmap.rs115 pub fn map_into<I, R>(iter: I) -> MapInto<I, R> { in map_into() function
Dmod.rs11 pub use self::map::{map_into, map_ok, MapInto, MapOk};
/external/rust/crates/futures-util/src/future/future/
Dmod.rs159 fn map_into<U>(self) -> MapInto<Self, U> in map_into() method
/external/rust/crates/itertools/src/
Dlib.rs765 fn map_into<R>(self) -> MapInto<Self, R> in map_into() method
769 adaptors::map_into(self) in map_into()
/external/rust/crates/itertools/
DCHANGELOG.md73 - Added new adaptor `.map_into()` for conversions using `Into` by @vorner