Skip to content

Instantly share code, notes, and snippets.

@efremidze
Last active March 12, 2017 01:08
Show Gist options
  • Save efremidze/14a3bed5ef2993d2b45db8b5b7ca19c4 to your computer and use it in GitHub Desktop.
Save efremidze/14a3bed5ef2993d2b45db8b5b7ca19c4 to your computer and use it in GitHub Desktop.
2d array extension
extension Array where Element: _ArrayType, Element.Generator.Element: AnyObject? {
func flatten() {
return flatMap { $0.flatMap { $0 } }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment