Skip to content

Instantly share code, notes, and snippets.

@nathankrishnan
Created April 9, 2017 18:11
Show Gist options
  • Save nathankrishnan/c85eb87a2240fd575dfe29629eadbb8a to your computer and use it in GitHub Desktop.
Save nathankrishnan/c85eb87a2240fd575dfe29629eadbb8a to your computer and use it in GitHub Desktop.
public func isEmpty() -> Bool {
return array.reduce(true) { prev, next in prev && !next }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment