blob: d2a345231eb438687fe02d40b38bc2c9edfca400 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
struct List {
data: Vec<String>,
}
impl List {
fn started_with<'a>(&'a self, prefix: &'a str) -> impl Iterator<Item=&'a str> {
self.data.iter().filter(|s| s.starts_with(prefix)).map(|s| s.as_ref())
//~^ ERROR E0373
}
}
fn main() {}
|