Skip to content

Instantly share code, notes, and snippets.

@Alexander-Ignition
Last active May 24, 2017 06:35
Show Gist options
  • Save Alexander-Ignition/bbef2154b9aa3a8faace93b541c4837d to your computer and use it in GitHub Desktop.
Save Alexander-Ignition/bbef2154b9aa3a8faace93b541c4837d to your computer and use it in GitHub Desktop.
extension Optional where Wrapped == String {
var isEmpty: Bool { return map { $0.isEmpty } ?? true }
}
extension Optional where Wrapped == Collection {
var isEmpty: Bool { return map { $0.isEmpty } ?? true }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment