Enumeration_RegexParser5.9.0
Member
enum Member
Citizens in _RegexParser
Conformances
protocol CustomDebugStringConvertible
A type with a customized textual representation suitable for debugging purposes.
protocol CustomStringConvertible
A type with a customized textual representation.
protocol Equatable
A type that can be compared for value equality.
protocol Hashable
A type that can be hashed into a
Hasher
to produce an integer hash value.
Members
case atom(AST.Atom)
A single character or escape
case custom(AST.CustomCharacterClass)
A nested custom character class
[[ab][cd]]
case quote(AST.Quote)
A quoted sequence. Inside a custom character class this just means the contents should be interpreted literally.
case range(AST.CustomCharacterClass.Range)
A character range
a-z
case setOperation([AST.CustomCharacterClass.Member], Source.Located<AST.CustomCharacterClass.SetOp>, [AST.CustomCharacterClass.Member])
A binary operator applied to sets of members
abc&&def
case trivia(AST.Trivia)
Trivia such as non-semantic whitespace.
var asTrivia: AST.Trivia?
var isSemantic: Bool
var isTrivia: Bool
var location: SourceLocation