1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

use super::alloc::{vec, vec::Vec};
use std::cmp::Ordering;

/// Implementation guts for `min_set`, `min_set_by`, and `min_set_by_key`.
/// 
/// This was taken directly from [`itertools`] and then modified to return [`Result`] instead.
pub fn min_set_impl<I, K, F, E, Compare>(
    mut it: I,
    mut key_for: F,
    mut compare: Compare,
) -> Result<Vec<I::Item>, E>
where
    I: Iterator,
    F: FnMut(&I::Item) -> K,
    Compare: FnMut(&I::Item, &I::Item, &K, &K) -> Result<Ordering, E>,
{
    match it.next() {
        None => Ok(Vec::new()),
        Some(element) => {
            let mut current_key = key_for(&element);
            let mut result = vec![element];
            for element in it {
                let key = key_for(&element);
                match compare(&element, &result[0], &key, &current_key)? {
                    Ordering::Less => {
                        result.clear();
                        result.push(element);
                        current_key = key;
                    }
                    Ordering::Equal => {
                        result.push(element);
                    }
                    Ordering::Greater => {}
                }
            };
            Ok(result)
        }
    }
}

/// Implementation guts for `max_set`, `max_set_by`, and `max_set_by_key`.
pub fn max_set_impl<I, K, F, E, Compare>(it: I, key_for: F, mut compare: Compare) -> Result<Vec<I::Item>, E>
where
    I: Iterator,
    F: FnMut(&I::Item) -> K,
    Compare: FnMut(&I::Item, &I::Item, &K, &K) -> Result<Ordering, E>,
{
    min_set_impl(it, key_for, |it1, it2, key1, key2| {
        compare(it2, it1, key2, key1)
    })
}