2019-12-24 19:14:20 +01:00
|
|
|
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())
|
2020-04-07 23:57:26 +02:00
|
|
|
//~^ ERROR E0373
|
2019-12-24 19:14:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|