Skip to content

Instantly share code, notes, and snippets.

@samdods
Created October 2, 2018 20:38
Show Gist options
  • Save samdods/dc6e0077208eb8acb6f76f178d44b6a2 to your computer and use it in GitHub Desktop.
Save samdods/dc6e0077208eb8acb6f76f178d44b6a2 to your computer and use it in GitHub Desktop.
extension Bool {
/// Returns true for false and false for true
var inverted: Bool {
return !self
}
}
// only people with non-empty street
people.filter(~\.address.street.isEmpty.inverted)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment