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
use {Loc, WithPos};
use as_loc::AsLoc;
use std::result;
pub trait ForEachLoc {
type Item;
fn for_each_loc<F, E: WithPos>(self, callback: F) -> result::Result<(), E>
where
F: FnMut(Self::Item) -> result::Result<(), E>;
}
impl<T, I> ForEachLoc for I
where
I: IntoIterator<Item = T>,
T: AsLoc,
{
type Item = T::Output;
fn for_each_loc<F, E: WithPos>(self, mut callback: F) -> result::Result<(), E>
where
F: FnMut(Self::Item) -> result::Result<(), E>,
{
for item in self {
let (value, pos) = Loc::take_pair(item.as_loc());
callback(value).map_err(|e| e.with_pos(pos))?;
}
Ok(())
}
}