Skip to content

Instantly share code, notes, and snippets.

@srstanic
Created August 5, 2020 18:46
Show Gist options
  • Select an option

  • Save srstanic/f8bb64785d1d62e2775a20acaf5cc6cd to your computer and use it in GitHub Desktop.

Select an option

Save srstanic/f8bb64785d1d62e2775a20acaf5cc6cd to your computer and use it in GitHub Desktop.
extension Optional where Wrapped == String {
var isEmptyOrNil: Bool {
return self?.isEmpty != false
}
var isNotEmptyNorNil: Bool {
return !isEmptyOrNil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment