Home
last modified time | relevance | path

Searched refs:into_group_map (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/itertools/src/
Dgroup_map.rs11 pub fn into_group_map<I, K, V>(iter: I) -> HashMap<K, Vec<V>> in into_group_map() function
29 into_group_map( in into_group_map_by()
Dlib.rs2518 fn into_group_map<K, V>(self) -> HashMap<K, Vec<V>> in into_group_map() method
2522 group_map::into_group_map(self) in into_group_map()
/external/rust/crates/itertools/tests/
Dquick.rs1084 let lookup = a.into_iter().map(|i| (i % modulo, i)).into_group_map();
1227 .into_group_map()
1270 .into_group_map()
1294 .into_group_map()
1308 let lookup_group_map = a.iter().copied().map(|i| (i % modulo, i)).into_group_map();
1319 .into_group_map()
1336 .into_group_map()
1353 .into_group_map()
1370 .into_group_map()
1387 .into_group_map()
[all …]
/external/rust/crates/itertools/
DCHANGELOG.md94 …- Add new iterator method `.into_group_map() -> HashMap<K, Vec<V>>` which turns an iterator of `(K…