Searched refs:map_into (Results 1 – 6 of 6) sorted by relevance
91 fn map_into(v: Vec<u8>) -> () {92 test_specializations(&v.into_iter().map_into::<u32>());
115 pub fn map_into<I, R>(iter: I) -> MapInto<I, R> { in map_into() function
11 pub use self::map::{map_into, map_ok, MapInto, MapOk};
159 fn map_into<U>(self) -> MapInto<Self, U> in map_into() method
765 fn map_into<R>(self) -> MapInto<Self, R> in map_into() method769 adaptors::map_into(self) in map_into()
73 - Added new adaptor `.map_into()` for conversions using `Into` by @vorner