#iterator #traits #user-group #derive-debug #debugging

grouping_by

A simple library which allows the user to group an iterator by various ways

10 releases

0.2.2 Sep 22, 2021
0.2.1 Aug 5, 2020
0.1.7 Jul 15, 2020
0.1.5 Jun 30, 2020

#1012 in Rust patterns

Download history 35/week @ 2023-11-27 22/week @ 2023-12-04 56/week @ 2023-12-11 21/week @ 2023-12-18 16/week @ 2023-12-25 8/week @ 2024-01-08 14/week @ 2024-01-15 3/week @ 2024-02-12 30/week @ 2024-02-19 25/week @ 2024-02-26 28/week @ 2024-03-04 16/week @ 2024-03-11

99 downloads per month

MIT license

14KB
137 lines

grouping-by

Crates.io Documentation

This small library provides users the possibility of grouping their iterators of various ways. It is still in development and therefore is not recommended for production code. There will be breaking changes constantly.

It is similar to Java Collectors.groupingBy

Example:

#[derive(Debug, PartialEq)]
struct Point {
   x: i32,
   y: i32,
}
let array: [Point; 4] = [
       Point { x: 1, y: 2 },
       Point { x: 1, y: 3 },
       Point { x: 2, y: 2 },
       Point { x: 2, y: 2 },
];

assert_eq!(
    [
        (1, vec![&Point { x: 1, y: 2 }, &Point { x: 1, y: 3 }]),
        (2, vec![&Point { x: 2, y: 2 }, &Point { x: 2, y: 2 }])
    ]
    .iter()
    .cloned()
    .collect::<HashMap<i32, Vec<&Point>>>(),
    array.iter().grouping_by(|point| point.x)
);

More advanced usage

// This returns for each year, the contract with the most days.
contracts.iter().grouping_by_max(
    |contract| contract.date.year(), // Key of HashMap
    |contract1, contract2| contract1.days.cmp(&contract2.days), // Comparator to get the max
) // Returns `HashMap<i32, Contract>`

Usage

Just import the trait (use grouping_by::GroupingBy;) into your crate and use it on your iterators.

No runtime deps