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
use crate::*;
use std::marker::PhantomData;

#[derive(Debug, Clone)]
pub struct Then<A, F, B>(A, F, PhantomData<B>)
where
    A: Scanner,
    F: Fn(A::Output) -> B,
    B: Scanner<Input = A::Input>;

impl<A, F, B> Then<A, F, B>
where
    A: Scanner,
    F: Fn(A::Output) -> B,
    B: Scanner<Input = A::Input>,
{
    pub(crate) fn new(a: A, f: F) -> Self {
        Self(a, f, PhantomData)
    }
}

impl<A, F, B> Scanner for Then<A, F, B>
where
    A: Scanner,
    F: Fn(A::Output) -> B,
    B: Scanner<Input = A::Input>,
{
    type Input = A::Input;
    type Output = B::Output;

    fn scan(&self, stream: &mut Stream<Self::Input>) -> Res<Self> {
        let ok = self.0.scan(stream)?;
        (self.1)(ok).scan(stream)
    }
}