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
53
54
55
56
57
58
59
60
61
62
use crate::reducer::*;

macro_rules! impl_reducer_for_array {
    () => {};

    ( $head:ident $(, $tail:ident )* $(,)? ) => {
        dedupe_docs!(($( $tail, )*),
            /// Updates all [`Reducer`]s in the array in order.
            ///
            /// Currently implemented for arrays of up to 32 elements.
            impl<A, R> Reducer<A> for [R; count!($( $tail, )*)]
            where
                A: Clone,
                R: Reducer<A>,
            {
                fn reduce(&mut self, _action: A) {
                    let [$( $tail, )*] = self;
                    $( $tail.reduce(_action.clone()); )*
                }
            }
        );

        impl_reducer_for_array!($($tail, )*);
    };
}

impl_reducer_for_array!(
    _32, _31, _30, _29, _28, _27, _26, _25, _24, _23, _22, _21, _20, _19, _18, _17, _16, _15, _14,
    _13, _12, _11, _10, _09, _08, _07, _06, _05, _04, _03, _02, _01, _00
);

#[cfg(test)]
mod tests {
    use crate::mock::*;
    use proptest::*;

    macro_rules! test_reducer_for_array {
        () => {};

        ( $head:ident $(, $tail:ident )* $(,)? ) => {
            proptest!(|(actions: Vec<u8>)| {
                let mut reducers: [Mock<_>; count!($( $tail, )*)] = Default::default();

                for (_i, &action) in actions.iter().enumerate() {
                    reduce(&mut reducers, action);
                    assert_eq!(reducers, [$( always!($tail, Mock::new(&actions[0..=_i])), )*]);
                }
            });

            test_reducer_for_array!($( $tail, )*);
        };
    }

    #[allow(clippy::cognitive_complexity)]
    #[test]
    fn array() {
        test_reducer_for_array!(
            _32, _31, _30, _29, _28, _27, _26, _25, _24, _23, _22, _21, _20, _19, _18, _17, _16,
            _15, _14, _13, _12, _11, _10, _09, _08, _07, _06, _05, _04, _03, _02, _01, _00
        );
    }
}