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
pub type Predicate = fn(ch: char) -> bool;
pub struct Transition<State, Effect>
where State: Eq + PartialEq + Copy,
Effect: Eq + PartialEq + Copy
{
condition: Option<Predicate>,
to: State,
effect: Option<Effect>
}
impl<State, Effect> Transition<State, Effect>
where State: Eq + PartialEq + Copy,
Effect: Eq + PartialEq + Copy
{
pub fn new(to: State, condition: Option<Predicate>, effect: Option<Effect>) -> Self {
Self {
to,
condition,
effect
}
}
pub fn transit(&self, ch: char) -> (Option<State>, Option<Effect>) {
match self.condition {
Some(condition) => {
if condition(ch) {
(Some(self.to), self.effect)
} else {
(None, None)
}
},
None => (Some(self.to), self.effect)
}
}
}
pub trait Effector<Effect>
where Effect: Eq + PartialEq + Copy
{
fn dispatch(&mut self, effect: Effect);
}