Skip to content

Instantly share code, notes, and snippets.

@acdimalev
Created September 16, 2015 04:12
Show Gist options
  • Save acdimalev/ec63daa72a040d3af211 to your computer and use it in GitHub Desktop.
Save acdimalev/ec63daa72a040d3af211 to your computer and use it in GitHub Desktop.
let str_vec: Vec<&str> = vec!["foo", "bar", "baz"];
let string_vec: Vec<String> = str_vec.iter().map(|s| s.to_string()).collect();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment