Skip to content

Instantly share code, notes, and snippets.

@yogeshmanghnani
Last active April 10, 2018 01:42
Show Gist options
  • Save yogeshmanghnani/9a23f9e8560a9f44d43af7b67f5da5a7 to your computer and use it in GitHub Desktop.
Save yogeshmanghnani/9a23f9e8560a9f44d43af7b67f5da5a7 to your computer and use it in GitHub Desktop.
This is a demonstration of Movable array using conditional conformances
extension Array: Movable where Element: Movable {
func move() {
for item in self {
item.move()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment