Skip to content

Instantly share code, notes, and snippets.

@mykhailokrainik
Created September 14, 2018 09:10
Show Gist options
  • Save mykhailokrainik/edd7131ba98fa2905044d61e130bc009 to your computer and use it in GitHub Desktop.
Save mykhailokrainik/edd7131ba98fa2905044d61e130bc009 to your computer and use it in GitHub Desktop.
impl Iterator<Item = T>
fn iterate<T>(data: Vec<T>) -> impl Iterator<Item = T> {
data.into_iter()
}
fn main() {
for x in iterate(vec!["1", "2", "3"]) {
println!("Hi! {}", x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment