Enumerationtuist.filesystem 0.7.9Glob
PatternParsingError
InvalidPattern.swift:13enum PatternParsingError
enum PatternParsingError
import Glob
case rangeNotClosed
The range contained a lower bound button not an upper bound (ie “[a-]”)
case rangeIsEmpty
The range was ended without any content (ie “[]”)
case rangeMissingBounds
The range included a separator but no lower bound (ie “[-c]”)
case rangeBoundsAreOutOfOrder
The upper bound of a range is lower than the lower bound
case invalidEscapeCharacter
An escape was started without an actual escaped character because the escape was at the end of the pattern
case invalidNamedCharacterClass(String)
A character class (like [:alnum:]
) was used with an unrecognized name
case patternListNotClosed
case emptyPatternList
protocol Error : Sendable
A type representing an error value that can be thrown.
protocol Sendable
var localizedDescription: String { get }
Retrieve the localized description for this error.