Skip to content

Instantly share code, notes, and snippets.

@nuclearace
Created September 14, 2015 21:37
Show Gist options
  • Select an option

  • Save nuclearace/113d79f75829ee1867f4 to your computer and use it in GitHub Desktop.

Select an option

Save nuclearace/113d79f75829ee1867f4 to your computer and use it in GitHub Desktop.
extension Array {
mutating func appendReturn(item: Array.Element)-> Array.Element {
self.append(item)
return item
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment