Enumerationtuist.filesystem 0.7.9Glob
Name
Pattern.swift:80enum Name
enum Name
import Glob
enum CharacterClass
struct Pattern
A glob pattern that can be matched against string content.
case alphaNumeric
Alphanumeric characters 0-9, A-Z, and a-z
case alpha
Alphabetic characters A-Z, a-z
case blank
Blank characters (space and tab)
case control
Control characters
case numeric
Decimal digits 0-9
case graph
Any printable character other than space.
case lower
Lower case alphabetic characters a-z
case printable
Any printable character
case punctuation
Printable characters other than space and alphaNumeric
case space
Any whitespace character
case upper
Upper case alphabetic characters A-Z
case hexadecimalDigit
Hexadecimal digits 0-9, a-f, A-F
func contains(_ character: Character) -> Bool
protocol Equatable
A type that can be compared for value equality.
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.
protocol RawRepresentable<RawValue>
A type that can be converted to and from an associated raw value.
protocol Sendable
init?(rawValue: String)
func contains(_ character: Character) -> Bool
var hashValue: Int { get }
static func != (lhs: Self, rhs: Self) -> Bool
Returns a Boolean value indicating whether two values are not equal.
func hash(into hasher: inout Hasher)