Skip to content

Instantly share code, notes, and snippets.

@tranhieutt
Created July 4, 2017 08:24
Show Gist options
  • Save tranhieutt/79d22570e90eaaac12dae7d3a2e629f1 to your computer and use it in GitHub Desktop.
Save tranhieutt/79d22570e90eaaac12dae7d3a2e629f1 to your computer and use it in GitHub Desktop.
[Swift] - reduce
let addItem = ["abc","f","a"]
let csv = addItem.reduce("zyz") { (text, name) -> String in
"\(text),\(name)"
}
//Console: zyz,abc,f,a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment