Skip to content

Instantly share code, notes, and snippets.

@krzyzanowskim
Last active February 28, 2022 20:02
Show Gist options
  • Save krzyzanowskim/8fe84d54b5422b1048adc96151e3a6cb to your computer and use it in GitHub Desktop.
Save krzyzanowskim/8fe84d54b5422b1048adc96151e3a6cb to your computer and use it in GitHub Desktop.
Check whether CharacterSet contains Character
extension CharacterSet {
/// Check whether CharacterSet contains Character
func contains(_ character: Character) -> Bool {
character.unicodeScalars.allSatisfy(contains)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment