diff --git a/Sources/RegexBuilder/Variadics.swift b/Sources/RegexBuilder/Variadics.swift index 8f104eae0..2a2d8b9e7 100644 --- a/Sources/RegexBuilder/Variadics.swift +++ b/Sources/RegexBuilder/Variadics.swift @@ -9,6836 +9,589 @@ // //===----------------------------------------------------------------------===// -// BEGIN AUTO-GENERATED CONTENT - -@_spi(RegexBuilder) import _StringProcessing - -// MARK: - Partial block (left arity 0) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1)> - ) -> Regex<(Substring, C1)> { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2)> - ) -> Regex<(Substring, C1, C2)> { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3)> - ) -> Regex<(Substring, C1, C2, C3)> { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4)> - ) -> Regex<(Substring, C1, C2, C3, C4)> { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5)> { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5, C6)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)> { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5, C6, C7)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)> { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5, C6, C7, C8)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)> { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, next) - } -} -// MARK: - Partial block (left arity 1) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2)> - ) -> Regex<(Substring, C1, C2)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3)> - ) -> Regex<(Substring, C1, C2, C3)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4)> - ) -> Regex<(Substring, C1, C2, C3, C4)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5, C6)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5, C6, C7)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5, C6, C7, C8)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -// MARK: - Partial block (left arity 2) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3)> - ) -> Regex<(Substring, C1, C2, C3)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4)> - ) -> Regex<(Substring, C1, C2, C3, C4)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5, C6)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5, C6, C7)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5, C6, C7, C8)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5, C6, C7, C8, C9)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5, C6, C7, C8, C9, C10)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -// MARK: - Partial block (left arity 3) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4)> - ) -> Regex<(Substring, C1, C2, C3, C4)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5, C6)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5, C6, C7)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5, C6, C7, C8)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5, C6, C7, C8, C9)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5, C6, C7, C8, C9, C10)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -// MARK: - Partial block (left arity 4) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5, C6)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5, C6, C7)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5, C6, C7, C8)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5, C6, C7, C8, C9)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5, C6, C7, C8, C9, C10)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -// MARK: - Partial block (left arity 5) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent<(W1, C6)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent<(W1, C6, C7)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent<(W1, C6, C7, C8)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent<(W1, C6, C7, C8, C9)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent<(W1, C6, C7, C8, C9, C10)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -// MARK: - Partial block (left arity 6) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6)>, - next: some RegexComponent<(W1, C7)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6)>, - next: some RegexComponent<(W1, C7, C8)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6)>, - next: some RegexComponent<(W1, C7, C8, C9)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6)>, - next: some RegexComponent<(W1, C7, C8, C9, C10)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -// MARK: - Partial block (left arity 7) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7)>, - next: some RegexComponent<(W1, C8)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7)>, - next: some RegexComponent<(W1, C8, C9)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7)>, - next: some RegexComponent<(W1, C8, C9, C10)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -// MARK: - Partial block (left arity 8) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7, C8)>, - next: some RegexComponent<(W1, C9)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7, C8)>, - next: some RegexComponent<(W1, C9, C10)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -// MARK: - Partial block (left arity 9) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - next: some RegexComponent<(W1, C10)> - ) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> { - let factory = makeFactory() - return factory.accumulate(accumulated, next) - } -} -// MARK: - Partial block (empty) - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent - ) -> Regex { - let factory = makeFactory() - return factory.accumulate(ignoringOutputTypeOf: accumulated, andAlso: next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C0)>, - next: some RegexComponent - ) -> Regex<(Substring, C0)> { - let factory = makeFactory() - return factory.accumulate(accumulated, ignoringOutputTypeOf: next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C0, C1)>, - next: some RegexComponent - ) -> Regex<(Substring, C0, C1)> { - let factory = makeFactory() - return factory.accumulate(accumulated, ignoringOutputTypeOf: next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C0, C1, C2)>, - next: some RegexComponent - ) -> Regex<(Substring, C0, C1, C2)> { - let factory = makeFactory() - return factory.accumulate(accumulated, ignoringOutputTypeOf: next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C0, C1, C2, C3)>, - next: some RegexComponent - ) -> Regex<(Substring, C0, C1, C2, C3)> { - let factory = makeFactory() - return factory.accumulate(accumulated, ignoringOutputTypeOf: next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C0, C1, C2, C3, C4)>, - next: some RegexComponent - ) -> Regex<(Substring, C0, C1, C2, C3, C4)> { - let factory = makeFactory() - return factory.accumulate(accumulated, ignoringOutputTypeOf: next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C0, C1, C2, C3, C4, C5)>, - next: some RegexComponent - ) -> Regex<(Substring, C0, C1, C2, C3, C4, C5)> { - let factory = makeFactory() - return factory.accumulate(accumulated, ignoringOutputTypeOf: next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C0, C1, C2, C3, C4, C5, C6)>, - next: some RegexComponent - ) -> Regex<(Substring, C0, C1, C2, C3, C4, C5, C6)> { - let factory = makeFactory() - return factory.accumulate(accumulated, ignoringOutputTypeOf: next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C0, C1, C2, C3, C4, C5, C6, C7)>, - next: some RegexComponent - ) -> Regex<(Substring, C0, C1, C2, C3, C4, C5, C6, C7)> { - let factory = makeFactory() - return factory.accumulate(accumulated, ignoringOutputTypeOf: next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C0, C1, C2, C3, C4, C5, C6, C7, C8)>, - next: some RegexComponent - ) -> Regex<(Substring, C0, C1, C2, C3, C4, C5, C6, C7, C8)> { - let factory = makeFactory() - return factory.accumulate(accumulated, ignoringOutputTypeOf: next) - } -} -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - next: some RegexComponent - ) -> Regex<(Substring, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return factory.accumulate(accumulated, ignoringOutputTypeOf: next) - } -} - - -// MARK: - Quantifiers (arity 0) - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == Substring { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent - ) where RegexOutput == Substring { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent - ) -> Regex { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == Substring { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent - ) where RegexOutput == Substring { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == Substring { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent - ) where RegexOutput == Substring { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent, - count: Int - ) where RegexOutput == Substring { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent - ) where RegexOutput == Substring { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == Substring { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0.., - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent - ) where RegexOutput == Substring { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)> - ) where RegexOutput == (Substring, C1?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent<(W, C1)> - ) -> Regex<(Substring, C1?)> { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)> - ) where RegexOutput == (Substring, C1?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1) { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)> - ) where RegexOutput == (Substring, C1) { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)>, - count: Int - ) where RegexOutput == (Substring, C1?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)> - ) where RegexOutput == (Substring, C1?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)>, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)> - ) where RegexOutput == (Substring, C1?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)> - ) where RegexOutput == (Substring, C1?, C2?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent<(W, C1, C2)> - ) -> Regex<(Substring, C1?, C2?)> { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)> - ) where RegexOutput == (Substring, C1?, C2?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1, C2) { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)> - ) where RegexOutput == (Substring, C1, C2) { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)>, - count: Int - ) where RegexOutput == (Substring, C1?, C2?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)> - ) where RegexOutput == (Substring, C1?, C2?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)>, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)> - ) where RegexOutput == (Substring, C1?, C2?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)> - ) where RegexOutput == (Substring, C1?, C2?, C3?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent<(W, C1, C2, C3)> - ) -> Regex<(Substring, C1?, C2?, C3?)> { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)> - ) where RegexOutput == (Substring, C1?, C2?, C3?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)> - ) where RegexOutput == (Substring, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)>, - count: Int - ) where RegexOutput == (Substring, C1?, C2?, C3?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)> - ) where RegexOutput == (Substring, C1?, C2?, C3?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)>, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)> - ) where RegexOutput == (Substring, C1?, C2?, C3?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3, C4)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent<(W, C1, C2, C3, C4)> - ) -> Regex<(Substring, C1?, C2?, C3?, C4?)> { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)> - ) where RegexOutput == (Substring, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)>, - count: Int - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)>, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?)> { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)>, - count: Int - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)>, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?, C6?)> { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - count: Int - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?)> { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7) { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7) { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - count: Int - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?)> { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8) { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8) { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - count: Int - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?)> { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9) { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9) { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - count: Int - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Optionally { - /// Creates a regex component that matches the given component - /// zero or one times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?) { - let factory = makeFactory() - self.init(factory.zeroOrOne(componentBuilder(), behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension RegexComponentBuilder { - @_alwaysEmitIntoClient - public static func buildLimitedAvailability( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?)> { - let factory = makeFactory() - return factory.zeroOrOne(component, nil) - } -} -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension ZeroOrMore { - /// Creates a regex component that matches the given component - /// zero or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?) { - let factory = makeFactory() - self.init(factory.zeroOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - component: The regex component. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { - let factory = makeFactory() - self.init(factory.oneOrMore(component, behavior)) - } -} - -@available(SwiftStdlib 5.7, *) -extension OneOrMore { - /// Creates a regex component that matches the given component - /// one or more times. - /// - /// - Parameters: - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - /// - componentBuilder: A builder closure that generates a regex - /// component. - @_alwaysEmitIntoClient - public init( - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { - let factory = makeFactory() - self.init(factory.oneOrMore(componentBuilder(), behavior)) - } -} - - -@available(SwiftStdlib 5.7, *) -extension Repeat { - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, - count: Int - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, component)) - } - - /// Creates a regex component that matches the given component repeated - /// the specified number of times. - /// - /// - Parameters: - /// - count: The number of times to repeat `component`. `count` must - /// be greater than or equal to zero. - /// - componentBuilder: A builder closure that creates the regex - /// component to repeat. - @_alwaysEmitIntoClient - public init( - count: Int, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?) { - precondition(count >= 0, "Must specify a positive count") - let factory = makeFactory() - self.init(factory.exactly(count, componentBuilder())) - } - - /// Creates a regex component that matches the given component repeated - /// a number of times specified by the given range expression. - /// - /// - Parameters: - /// - component: The regex component to repeat. - /// - expression: A range expression specifying the number of times - /// that `component` can repeat. - /// - behavior: The repetition behavior to use when repeating - /// `component` in the match. If `behavior` is `nil`, the default - /// repetition behavior is used, which can be changed from - /// `eager` by calling `repetitionBehavior(_:)` on the resulting - /// `Regex`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0..( - _ expression: some RangeExpression, - _ behavior: RegexRepetitionBehavior? = nil, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) where RegexOutput == (Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?) { - let factory = makeFactory() - self.init(factory.repeating(expression.relative(to: 0.. some RegexComponent - ) where RegexOutput == Substring { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter component: The regex component to wrap in an atomic - /// group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)> - ) where RegexOutput == (Substring, C1) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(component)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to wrap in an atomic group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)> - ) where RegexOutput == (Substring, C1) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter component: The regex component to wrap in an atomic - /// group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)> - ) where RegexOutput == (Substring, C1, C2) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(component)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to wrap in an atomic group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)> - ) where RegexOutput == (Substring, C1, C2) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter component: The regex component to wrap in an atomic - /// group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)> - ) where RegexOutput == (Substring, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(component)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to wrap in an atomic group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)> - ) where RegexOutput == (Substring, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter component: The regex component to wrap in an atomic - /// group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)> - ) where RegexOutput == (Substring, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(component)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to wrap in an atomic group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)> - ) where RegexOutput == (Substring, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter component: The regex component to wrap in an atomic - /// group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(component)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to wrap in an atomic group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter component: The regex component to wrap in an atomic - /// group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(component)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to wrap in an atomic group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter component: The regex component to wrap in an atomic - /// group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(component)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to wrap in an atomic group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter component: The regex component to wrap in an atomic - /// group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(component)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to wrap in an atomic group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter component: The regex component to wrap in an atomic - /// group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(component)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to wrap in an atomic group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter component: The regex component to wrap in an atomic - /// group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(component)) - } -} - -@available(SwiftStdlib 5.7, *) -extension Local { - /// Creates an atomic group with the given regex component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to wrap in an atomic group. - @available(SwiftStdlib 5.7, *) - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) where RegexOutput == (Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { - let factory = makeFactory() - self.init(factory.atomicNonCapturing(componentBuilder())) - } -} -// MARK: - Alternation builder (arity 0) - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent - ) -> ChoiceOf { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1)> - ) -> ChoiceOf<(Substring, C1?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2)> - ) -> ChoiceOf<(Substring, C1?, C2?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3)> - ) -> ChoiceOf<(Substring, C1?, C2?, C3?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4)> - ) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5)> - ) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5, C6)> - ) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?, C6?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5, C6, C7)> - ) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5, C6, C7, C8)> - ) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent, - next: some RegexComponent<(W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -// MARK: - Alternation builder (arity 1) - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent - ) -> ChoiceOf<(Substring, C1)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2)> - ) -> ChoiceOf<(Substring, C1, C2?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3)> - ) -> ChoiceOf<(Substring, C1, C2?, C3?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4)> - ) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5)> - ) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5, C6)> - ) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?, C6?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5, C6, C7)> - ) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?, C6?, C7?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5, C6, C7, C8)> - ) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?, C6?, C7?, C8?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1)>, - next: some RegexComponent<(W1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -// MARK: - Alternation builder (arity 2) - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent - ) -> ChoiceOf<(Substring, C1, C2)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3)> - ) -> ChoiceOf<(Substring, C1, C2, C3?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4)> - ) -> ChoiceOf<(Substring, C1, C2, C3?, C4?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5)> - ) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5, C6)> - ) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?, C6?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5, C6, C7)> - ) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?, C6?, C7?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5, C6, C7, C8)> - ) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?, C6?, C7?, C8?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5, C6, C7, C8, C9)> - ) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?, C6?, C7?, C8?, C9?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2)>, - next: some RegexComponent<(W1, C3, C4, C5, C6, C7, C8, C9, C10)> - ) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -// MARK: - Alternation builder (arity 3) - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent - ) -> ChoiceOf<(Substring, C1, C2, C3)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5, C6)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?, C6?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5, C6, C7)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?, C6?, C7?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5, C6, C7, C8)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?, C6?, C7?, C8?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5, C6, C7, C8, C9)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?, C6?, C7?, C8?, C9?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3)>, - next: some RegexComponent<(W1, C4, C5, C6, C7, C8, C9, C10)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?, C6?, C7?, C8?, C9?, C10?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -// MARK: - Alternation builder (arity 4) - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent - ) -> ChoiceOf<(Substring, C1, C2, C3, C4)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5, C6)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?, C6?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5, C6, C7)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?, C6?, C7?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5, C6, C7, C8)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?, C6?, C7?, C8?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5, C6, C7, C8, C9)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?, C6?, C7?, C8?, C9?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4)>, - next: some RegexComponent<(W1, C5, C6, C7, C8, C9, C10)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?, C6?, C7?, C8?, C9?, C10?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -// MARK: - Alternation builder (arity 5) - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent<(W1, C6)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent<(W1, C6, C7)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6?, C7?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent<(W1, C6, C7, C8)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6?, C7?, C8?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent<(W1, C6, C7, C8, C9)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6?, C7?, C8?, C9?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5)>, - next: some RegexComponent<(W1, C6, C7, C8, C9, C10)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6?, C7?, C8?, C9?, C10?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -// MARK: - Alternation builder (arity 6) - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6)>, - next: some RegexComponent - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6)>, - next: some RegexComponent<(W1, C7)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6)>, - next: some RegexComponent<(W1, C7, C8)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7?, C8?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6)>, - next: some RegexComponent<(W1, C7, C8, C9)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7?, C8?, C9?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6)>, - next: some RegexComponent<(W1, C7, C8, C9, C10)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7?, C8?, C9?, C10?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -// MARK: - Alternation builder (arity 7) - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7)>, - next: some RegexComponent - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7)>, - next: some RegexComponent<(W1, C8)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7)>, - next: some RegexComponent<(W1, C8, C9)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8?, C9?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7)>, - next: some RegexComponent<(W1, C8, C9, C10)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8?, C9?, C10?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -// MARK: - Alternation builder (arity 8) - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7, C8)>, - next: some RegexComponent - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7, C8)>, - next: some RegexComponent<(W1, C9)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7, C8)>, - next: some RegexComponent<(W1, C9, C10)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9?, C10?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -// MARK: - Alternation builder (arity 9) - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - next: some RegexComponent - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock( - accumulated: some RegexComponent<(W0, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - next: some RegexComponent<(W1, C10)> - ) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10?)> { - let factory = makeFactory() - return .init(factory.accumulateAlternation(accumulated, next)) - } -} -// MARK: - Alternation builder buildBlock - -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock(first regex: R) -> ChoiceOf<(W, C1?)> where R: RegexComponent, R.RegexOutput == (W, C1) { - let factory = makeFactory() - return .init(factory.orderedChoice(regex)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock(first regex: R) -> ChoiceOf<(W, C1?, C2?)> where R: RegexComponent, R.RegexOutput == (W, C1, C2) { - let factory = makeFactory() - return .init(factory.orderedChoice(regex)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock(first regex: R) -> ChoiceOf<(W, C1?, C2?, C3?)> where R: RegexComponent, R.RegexOutput == (W, C1, C2, C3) { - let factory = makeFactory() - return .init(factory.orderedChoice(regex)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock(first regex: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?)> where R: RegexComponent, R.RegexOutput == (W, C1, C2, C3, C4) { - let factory = makeFactory() - return .init(factory.orderedChoice(regex)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock(first regex: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?)> where R: RegexComponent, R.RegexOutput == (W, C1, C2, C3, C4, C5) { - let factory = makeFactory() - return .init(factory.orderedChoice(regex)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock(first regex: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?, C6?)> where R: RegexComponent, R.RegexOutput == (W, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - return .init(factory.orderedChoice(regex)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock(first regex: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?, C6?, C7?)> where R: RegexComponent, R.RegexOutput == (W, C1, C2, C3, C4, C5, C6, C7) { - let factory = makeFactory() - return .init(factory.orderedChoice(regex)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock(first regex: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?)> where R: RegexComponent, R.RegexOutput == (W, C1, C2, C3, C4, C5, C6, C7, C8) { - let factory = makeFactory() - return .init(factory.orderedChoice(regex)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock(first regex: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?)> where R: RegexComponent, R.RegexOutput == (W, C1, C2, C3, C4, C5, C6, C7, C8, C9) { - let factory = makeFactory() - return .init(factory.orderedChoice(regex)) - } -} -@available(SwiftStdlib 5.7, *) -extension AlternationBuilder { - @_alwaysEmitIntoClient - public static func buildPartialBlock(first regex: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?)> where R: RegexComponent, R.RegexOutput == (W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { - let factory = makeFactory() - return .init(factory.orderedChoice(regex)) - } -} -// MARK: - Non-builder capture (arity 0) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter component: The regex component to capture. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent - ) where RegexOutput == (Substring, W) { - let factory = makeFactory() - self.init(factory.capture(component)) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent, - as reference: Reference - ) where RegexOutput == (Substring, W) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture) { - let factory = makeFactory() - self.init(factory.capture(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture) { - let factory = makeFactory() - self.init(factory.captureOptional(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture) { - let factory = makeFactory() - self.init(factory.captureOptional(component, reference._raw, transform)) - } -} -// MARK: - Builder capture (arity 0) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to capture. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent - ) where RegexOutput == (Substring, W) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder())) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent - ) where RegexOutput == (Substring, W) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_disfavoredOverload - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) - } -} - -// MARK: - Non-builder capture (arity 1) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter component: The regex component to capture. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)> - ) where RegexOutput == (Substring, W, C1) { - let factory = makeFactory() - self.init(factory.capture(component)) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)>, - as reference: Reference - ) where RegexOutput == (Substring, W, C1) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1) { - let factory = makeFactory() - self.init(factory.capture(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1) { - let factory = makeFactory() - self.init(factory.captureOptional(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1) { - let factory = makeFactory() - self.init(factory.captureOptional(component, reference._raw, transform)) - } -} -// MARK: - Builder capture (arity 1) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to capture. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)> - ) where RegexOutput == (Substring, W, C1) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder())) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)> - ) where RegexOutput == (Substring, W, C1) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) - } -} - -// MARK: - Non-builder capture (arity 2) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter component: The regex component to capture. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)> - ) where RegexOutput == (Substring, W, C1, C2) { - let factory = makeFactory() - self.init(factory.capture(component)) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)>, - as reference: Reference - ) where RegexOutput == (Substring, W, C1, C2) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2) { - let factory = makeFactory() - self.init(factory.capture(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2) { - let factory = makeFactory() - self.init(factory.captureOptional(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2) { - let factory = makeFactory() - self.init(factory.captureOptional(component, reference._raw, transform)) - } -} -// MARK: - Builder capture (arity 2) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to capture. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)> - ) where RegexOutput == (Substring, W, C1, C2) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder())) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)> - ) where RegexOutput == (Substring, W, C1, C2) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) - } -} - -// MARK: - Non-builder capture (arity 3) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter component: The regex component to capture. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)> - ) where RegexOutput == (Substring, W, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.capture(component)) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)>, - as reference: Reference - ) where RegexOutput == (Substring, W, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.capture(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.captureOptional(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.captureOptional(component, reference._raw, transform)) - } -} -// MARK: - Builder capture (arity 3) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to capture. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)> - ) where RegexOutput == (Substring, W, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder())) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)> - ) where RegexOutput == (Substring, W, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) - } -} - -// MARK: - Non-builder capture (arity 4) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter component: The regex component to capture. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.capture(component)) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)>, - as reference: Reference - ) where RegexOutput == (Substring, W, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.capture(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.captureOptional(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.captureOptional(component, reference._raw, transform)) - } -} -// MARK: - Builder capture (arity 4) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to capture. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder())) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) - } -} - -// MARK: - Non-builder capture (arity 5) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter component: The regex component to capture. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.capture(component)) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)>, - as reference: Reference - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.capture(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.captureOptional(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.captureOptional(component, reference._raw, transform)) - } -} -// MARK: - Builder capture (arity 5) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to capture. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder())) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) - } -} - -// MARK: - Non-builder capture (arity 6) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter component: The regex component to capture. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.capture(component)) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - as reference: Reference - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.capture(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.capture(component, reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.captureOptional(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.captureOptional(component, reference._raw, transform)) - } -} -// MARK: - Builder capture (arity 6) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to capture. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder())) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw, transform)) - } -} - -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6) { - let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) - } -} - -// MARK: - Non-builder capture (arity 7) +@_spi(RegexBuilder) import _StringProcessing @available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter component: The regex component to capture. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7) { - let factory = makeFactory() - self.init(factory.capture(component)) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. +extension RegexComponentBuilder { @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - as reference: Reference - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7) { + public static func buildPartialBlock< + R0: RegexComponent, R1: RegexComponent, Whole0, Whole1, each Capture0, each Capture1 + >( + accumulated: R0, + next: R1 + ) -> Regex<(Substring, repeat each Capture0, repeat each Capture1)> + where R0.RegexOutput == (Whole0, repeat each Capture0), + R1.RegexOutput == (Whole1, repeat each Capture1) + { let factory = makeFactory() - self.init(factory.capture(component, reference._raw)) + return factory.accumulate(accumulated, next) } - /// Creates a capture for the given component, transforming with the - /// given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7) { + @_disfavoredOverload + public static func buildPartialBlock< + R0: RegexComponent, R1: RegexComponent, Whole0, Whole1, each Capture1 + >( + accumulated: R0, + next: R1 + ) -> Regex<(Substring, repeat each Capture1)> + where R0.RegexOutput == Whole0, + R1.RegexOutput == (Whole1, repeat each Capture1) + { let factory = makeFactory() - self.init(factory.capture(component, nil, transform)) + return factory.accumulate(ignoringOutputTypeOf: accumulated, next) } - - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7) { + @_disfavoredOverload + public static func buildPartialBlock< + R0: RegexComponent, R1: RegexComponent, Whole0, Whole1, each Capture0 + >( + accumulated: R0, + next: R1 + ) -> Regex<(Substring, repeat each Capture0)> + where R0.RegexOutput == (Whole0, repeat each Capture0), + R1.RegexOutput == Whole1 + { let factory = makeFactory() - self.init(factory.capture(component, reference._raw, transform)) + return factory.accumulate(accumulated, ignoringOutputTypeOf: next) } } -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7) { - let factory = makeFactory() - self.init(factory.captureOptional(component, nil, transform)) - } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. - @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7) { - let factory = makeFactory() - self.init(factory.captureOptional(component, reference._raw, transform)) - } -} -// MARK: - Builder capture (arity 7) +// MARK: - Quantifiers @available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to capture. - @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder())) - } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7) { - let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw)) - } - - /// Creates a capture for the given component, transforming with the - /// given closure. +extension Optionally { + /// Creates a regex component that matches the given component + /// zero or one times. /// /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - component: The regex component. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7) { + public init( + _ component: some RegexComponent, + _ behavior: RegexRepetitionBehavior? = nil + ) where RegexOutput == Substring { let factory = makeFactory() - self.init(factory.capture(componentBuilder(), nil, transform)) + self.init(factory.zeroOrOne(component, behavior)) } - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. + /// Creates a regex component that matches the given component + /// zero or one times. /// /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - component: The regex component. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7) { + public init( + _ component: some RegexComponent<(C0, C1, repeat each Capture)>, + _ behavior: RegexRepetitionBehavior? = nil + ) where RegexOutput == (Substring, C1, repeat (each Capture)?) { let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw, transform)) + self.init(factory.zeroOrOne(component, behavior)) } -} -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. + /// Creates a regex component that matches the given component + /// zero or one times. /// /// - Parameters: + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// component. + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7) { + public init( + _ behavior: RegexRepetitionBehavior? = nil, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent + ) where RegexOutput == Substring { let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), nil, transform)) + self.init(factory.zeroOrOne(componentBuilder(), behavior)) } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. + + /// Creates a regex component that matches the given component + /// zero or one times. /// /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// component. @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7) { + public init( + _ behavior: RegexRepetitionBehavior? = nil, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(C0, C1, repeat each Capture)> + ) where RegexOutput == (Substring, C1?, repeat (each Capture)?) { let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) + self.init(factory.zeroOrOne(componentBuilder(), behavior)) } } -// MARK: - Non-builder capture (arity 8) - @available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. - /// - /// - Parameter component: The regex component to capture. +extension RegexComponentBuilder { + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8) { + public static func buildLimitedAvailability( + _ component: some RegexComponent + ) -> Regex { let factory = makeFactory() - self.init(factory.capture(component)) + return factory.zeroOrOne(component, nil) } - - /// Creates a capture for the given component using the specified - /// reference. - /// - /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. + @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - as reference: Reference - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8) { + public static func buildLimitedAvailability( + _ component: some RegexComponent<(C0, C1, repeat each Capture)> + ) -> Regex<(Substring, C1?, repeat (each Capture)?)> { let factory = makeFactory() - self.init(factory.capture(component, reference._raw)) + return factory.zeroOrOne(component, nil) } +} - /// Creates a capture for the given component, transforming with the - /// given closure. +@available(SwiftStdlib 5.7, *) +extension ZeroOrMore { + /// Creates a regex component that matches the given component + /// zero or more times. /// /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - component: The regex component. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8) { + public init( + _ component: some RegexComponent, + _ behavior: RegexRepetitionBehavior? = nil + ) where RegexOutput == Substring { let factory = makeFactory() - self.init(factory.capture(component, nil, transform)) + self.init(factory.zeroOrMore(component, behavior)) } - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. + /// Creates a regex component that matches the given component + /// zero or more times. /// /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - component: The regex component. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8) { + public init( + _ component: some RegexComponent<(C0, C1, repeat each Capture)>, + _ behavior: RegexRepetitionBehavior? = nil + ) where RegexOutput == (Substring, C1?, repeat (each Capture)?) { let factory = makeFactory() - self.init(factory.capture(component, reference._raw, transform)) + self.init(factory.zeroOrMore(component, behavior)) } -} -@available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. + /// Creates a regex component that matches the given component + /// zero or more times. /// /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. + /// - componentBuilder: A builder closure that generates a regex + /// component. + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8) { + public init( + _ behavior: RegexRepetitionBehavior? = nil, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent + ) where RegexOutput == Substring { let factory = makeFactory() - self.init(factory.captureOptional(component, nil, transform)) + self.init(factory.zeroOrMore(componentBuilder(), behavior)) } - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. + /// Creates a regex component that matches the given component + /// zero or more times. /// /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. + /// - componentBuilder: A builder closure that generates a regex + /// component. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8) { + public init( + _ behavior: RegexRepetitionBehavior? = nil, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(C0, C1, repeat each Capture)> + ) where RegexOutput == (Substring, C1?, repeat (each Capture)?) { let factory = makeFactory() - self.init(factory.captureOptional(component, reference._raw, transform)) + self.init(factory.zeroOrMore(componentBuilder(), behavior)) } } -// MARK: - Builder capture (arity 8) @available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. +extension OneOrMore { + /// Creates a regex component that matches the given component + /// one or more times. /// - /// - Parameter componentBuilder: A builder closure that generates a - /// regex component to capture. + /// - Parameters: + /// - component: The regex component. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8) { + public init( + _ component: some RegexComponent, + _ behavior: RegexRepetitionBehavior? = nil + ) where RegexOutput == Substring { let factory = makeFactory() - self.init(factory.capture(componentBuilder())) + self.init(factory.oneOrMore(component, behavior)) } - /// Creates a capture for the given component using the specified - /// reference. + /// Creates a regex component that matches the given component + /// one or more times. /// /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. + /// - component: The regex component. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8) { + public init( + _ component: some RegexComponent<(C0, C1, repeat each Capture)>, + _ behavior: RegexRepetitionBehavior? = nil + ) where RegexOutput == (Substring, C1, repeat each Capture) { let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw)) + self.init(factory.oneOrMore(component, behavior)) } - /// Creates a capture for the given component, transforming with the - /// given closure. + /// Creates a regex component that matches the given component + /// one or more times. /// /// - Parameters: + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// component. + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8) { + public init( + _ behavior: RegexRepetitionBehavior? = nil, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent + ) where RegexOutput == Substring { let factory = makeFactory() - self.init(factory.capture(componentBuilder(), nil, transform)) + self.init(factory.oneOrMore(componentBuilder(), behavior)) } - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. + /// Creates a regex component that matches the given component + /// one or more times. /// /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// component. @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8) { + public init( + _ behavior: RegexRepetitionBehavior? = nil, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(C0, C1, repeat each Capture)> + ) where RegexOutput == (Substring, C1, repeat each Capture) { let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw, transform)) + self.init(factory.oneOrMore(componentBuilder(), behavior)) } } @available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. +extension Repeat { + /// Creates a regex component that matches the given component repeated + /// the specified number of times. /// /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - component: The regex component to repeat. + /// - count: The number of times to repeat `component`. `count` must + /// be greater than or equal to zero. + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8) { + public init( + _ component: some RegexComponent, + count: Int + ) where RegexOutput == Substring { + precondition(count >= 0, "Must specify a positive count") let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), nil, transform)) + self.init(factory.exactly(count, component)) } - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. + /// Creates a regex component that matches the given component repeated + /// the specified number of times. /// /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - count: The number of times to repeat `component`. `count` must + /// be greater than or equal to zero. + /// - componentBuilder: A builder closure that creates the regex + /// component to repeat. + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8) { + public init( + count: Int, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent + ) where RegexOutput == Substring { + precondition(count >= 0, "Must specify a positive count") let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) + self.init(factory.exactly(count, componentBuilder())) } -} -// MARK: - Non-builder capture (arity 9) - -@available(SwiftStdlib 5.7, *) -extension Capture { - /// Creates a capture for the given component. + /// Creates a regex component that matches the given component repeated + /// the specified number of times. /// - /// - Parameter component: The regex component to capture. + /// - Parameters: + /// - component: The regex component to repeat. + /// - count: The number of times to repeat `component`. `count` must + /// be greater than or equal to zero. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public init( + _ component: some RegexComponent<(C0, C1, repeat each Capture)>, + count: Int + ) where RegexOutput == (Substring, C1?, repeat (each Capture)?) { + precondition(count >= 0, "Must specify a positive count") let factory = makeFactory() - self.init(factory.capture(component)) + self.init(factory.exactly(count, component)) } - /// Creates a capture for the given component using the specified - /// reference. + /// Creates a regex component that matches the given component repeated + /// the specified number of times. /// /// - Parameters: - /// - component: The regex component to capture. - /// - reference: The reference to use for anything captured by - /// `component`. + /// - count: The number of times to repeat `component`. `count` must + /// be greater than or equal to zero. + /// - componentBuilder: A builder closure that creates the regex + /// component to repeat. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - as reference: Reference - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public init( + count: Int, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(C0, C1, repeat each Capture)> + ) where RegexOutput == (Substring, C1?, repeat (each Capture)?) { + precondition(count >= 0, "Must specify a positive count") let factory = makeFactory() - self.init(factory.capture(component, reference._raw)) + self.init(factory.exactly(count, componentBuilder())) } - /// Creates a capture for the given component, transforming with the - /// given closure. + /// Creates a regex component that matches the given component repeated + /// a number of times specified by the given range expression. /// /// - Parameters: - /// - component: The regex component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - component: The regex component to repeat. + /// - expression: A range expression specifying the number of times + /// that `component` can repeat. + /// - behavior: The repetition behavior to use when repeating + /// `component` in the match. If `behavior` is `nil`, the default + /// repetition behavior is used, which can be changed from + /// `eager` by calling `repetitionBehavior(_:)` on the resulting + /// `Regex`. + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public init( + _ component: some RegexComponent, + _ expression: some RangeExpression, + _ behavior: RegexRepetitionBehavior? = nil + ) where RegexOutput == Substring { let factory = makeFactory() - self.init(factory.capture(component, nil, transform)) + self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public init( + _ component: some RegexComponent<(C0, C1, repeat each Capture)>, + _ expression: some RangeExpression, + _ behavior: RegexRepetitionBehavior? = nil + ) where RegexOutput == (Substring, C1?, repeat (each Capture)?) { let factory = makeFactory() - self.init(factory.capture(component, reference._raw, transform)) + self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public init( + _ expression: some RangeExpression, + _ behavior: RegexRepetitionBehavior? = nil, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent + ) where RegexOutput == Substring { let factory = makeFactory() - self.init(factory.captureOptional(component, nil, transform)) + self.init(factory.repeating(expression.relative(to: 0..( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - as reference: Reference, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public init( + _ expression: some RangeExpression, + _ behavior: RegexRepetitionBehavior? = nil, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(C0, C1, repeat each Capture)> + ) where RegexOutput == (Substring, C1?, repeat (each Capture)?) { let factory = makeFactory() - self.init(factory.captureOptional(component, reference._raw, transform)) + self.init(factory.repeating(expression.relative(to: 0..( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public init( + _ component: some RegexComponent + ) where RegexOutput == Substring { let factory = makeFactory() - self.init(factory.capture(componentBuilder())) + self.init(factory.atomicNonCapturing(component)) } - /// Creates a capture for the given component using the specified - /// reference. + /// Creates an atomic group with the given regex component. /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. + /// - Parameter componentBuilder: A builder closure that generates a + /// regex component to wrap in an atomic group. + @available(SwiftStdlib 5.7, *) + @_disfavoredOverload @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public init( + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent + ) where RegexOutput == Substring { let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw)) + self.init(factory.atomicNonCapturing(componentBuilder())) } +} - /// Creates a capture for the given component, transforming with the - /// given closure. +@available(SwiftStdlib 5.7, *) +extension Local { + /// Creates an atomic group with the given regex component. /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - Parameter component: The regex component to wrap in an atomic + /// group. + @available(SwiftStdlib 5.7, *) @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public init( + _ component: some RegexComponent<(W, repeat each Capture)> + ) where RegexOutput == (Substring, repeat each Capture) { let factory = makeFactory() - self.init(factory.capture(componentBuilder(), nil, transform)) + self.init(factory.atomicNonCapturing(component)) } - /// Creates a capture for the given component using the specified - /// reference, transforming with the given closure. + /// Creates an atomic group with the given regex component. /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + /// - Parameter componentBuilder: A builder closure that generates a + /// regex component to wrap in an atomic group. + @available(SwiftStdlib 5.7, *) @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public init( + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, repeat each Capture)> + ) where RegexOutput == (Substring, repeat each Capture) { let factory = makeFactory() - self.init(factory.capture(componentBuilder(), reference._raw, transform)) + self.init(factory.atomicNonCapturing(componentBuilder())) } } +// MARK: - Alternation builder + @available(SwiftStdlib 5.7, *) -extension TryCapture { - /// Creates a capture for the given component, attempting to transform - /// with the given closure. - /// - /// - Parameters: - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. +extension AlternationBuilder { @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public static func buildPartialBlock( + accumulated: some RegexComponent<(W0, C0)>, + next: some RegexComponent<(W1, C1)> + ) -> ChoiceOf<(Substring, C0?, C1?)> { let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), nil, transform)) + return .init(factory.accumulateAlternation(accumulated, next)) } - - /// Creates a capture for the given component using the specified - /// reference, attempting to transform with the given closure. - /// - /// - Parameters: - /// - reference: The reference to use for anything captured by - /// `component`. - /// - componentBuilder: A builder closure that generates a regex - /// component to capture. - /// - transform: A closure that takes the substring matched by - /// `component` and returns a new value to capture, or `nil` if - /// matching should proceed, backtracking if allowed. If `transform` - /// throws an error, matching is abandoned and the error is returned - /// to the caller. + @_alwaysEmitIntoClient - public init( - as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9)>, - transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9) { + public static func buildPartialBlock( + accumulated: some RegexComponent<(W0, repeat each Capture0)>, + next: some RegexComponent<(W1, repeat each Capture1)> + ) -> ChoiceOf<(Substring, repeat each Capture0, repeat (each Capture1)?)> { let factory = makeFactory() - self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) + return .init(factory.accumulateAlternation(accumulated, next)) + } + + @_disfavoredOverload + @_alwaysEmitIntoClient + public static func buildPartialBlock( + accumulated: some RegexComponent, + next: some RegexComponent + ) -> ChoiceOf { + let factory = makeFactory() + return .init(factory.accumulateAlternation(accumulated, next)) } } -// MARK: - Non-builder capture (arity 10) +// MARK: - Non-builder captures @available(SwiftStdlib 5.7, *) extension Capture { @@ -6846,9 +599,9 @@ extension Capture { /// /// - Parameter component: The regex component to capture. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + public init( + _ component: some RegexComponent<(W, repeat each Capture)> + ) where RegexOutput == (Substring, W, repeat each Capture) { let factory = makeFactory() self.init(factory.capture(component)) } @@ -6861,10 +614,10 @@ extension Capture { /// - reference: The reference to use for anything captured by /// `component`. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, + public init( + _ component: some RegexComponent<(W, repeat each Capture)>, as reference: Reference - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + ) where RegexOutput == (Substring, W, repeat each Capture) { let factory = makeFactory() self.init(factory.capture(component, reference._raw)) } @@ -6879,10 +632,10 @@ extension Capture { /// throws an error, matching is abandoned and the error is returned /// to the caller. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, + public init( + _ component: some RegexComponent<(W, repeat each Capture)>, transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + ) where RegexOutput == (Substring, NewCapture, repeat each Capture) { let factory = makeFactory() self.init(factory.capture(component, nil, transform)) } @@ -6899,11 +652,11 @@ extension Capture { /// throws an error, matching is abandoned and the error is returned /// to the caller. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, + public init( + _ component: some RegexComponent<(W, repeat each Capture)>, as reference: Reference, transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + ) where RegexOutput == (Substring, NewCapture, repeat each Capture) { let factory = makeFactory() self.init(factory.capture(component, reference._raw, transform)) } @@ -6922,10 +675,10 @@ extension TryCapture { /// throws an error, matching is abandoned and the error is returned /// to the caller. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, + public init( + _ component: some RegexComponent<(W, repeat each Capture)>, transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + ) where RegexOutput == (Substring, NewCapture, repeat each Capture) { let factory = makeFactory() self.init(factory.captureOptional(component, nil, transform)) } @@ -6943,16 +696,17 @@ extension TryCapture { /// throws an error, matching is abandoned and the error is returned /// to the caller. @_alwaysEmitIntoClient - public init( - _ component: some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, + public init( + _ component: some RegexComponent<(W, repeat each Capture)>, as reference: Reference, transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + ) where RegexOutput == (Substring, NewCapture, repeat each Capture) { let factory = makeFactory() self.init(factory.captureOptional(component, reference._raw, transform)) } } -// MARK: - Builder capture (arity 10) + +// MARK: - Builder captures @available(SwiftStdlib 5.7, *) extension Capture { @@ -6961,9 +715,9 @@ extension Capture { /// - Parameter componentBuilder: A builder closure that generates a /// regex component to capture. @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + public init( + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, repeat each Capture)> + ) where RegexOutput == (Substring, W, repeat each Capture) { let factory = makeFactory() self.init(factory.capture(componentBuilder())) } @@ -6977,10 +731,10 @@ extension Capture { /// - componentBuilder: A builder closure that generates a regex /// component to capture. @_alwaysEmitIntoClient - public init( + public init( as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)> - ) where RegexOutput == (Substring, W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, repeat each Capture)> + ) where RegexOutput == (Substring, W, repeat each Capture) { let factory = makeFactory() self.init(factory.capture(componentBuilder(), reference._raw)) } @@ -6996,10 +750,10 @@ extension Capture { /// throws an error, matching is abandoned and the error is returned /// to the caller. @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, + public init( + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, repeat each Capture)>, transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + ) where RegexOutput == (Substring, NewCapture, repeat each Capture) { let factory = makeFactory() self.init(factory.capture(componentBuilder(), nil, transform)) } @@ -7017,11 +771,11 @@ extension Capture { /// throws an error, matching is abandoned and the error is returned /// to the caller. @_alwaysEmitIntoClient - public init( + public init( as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, repeat each Capture)>, transform: @escaping (W) throws -> NewCapture - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + ) where RegexOutput == (Substring, NewCapture, repeat each Capture) { let factory = makeFactory() self.init(factory.capture(componentBuilder(), reference._raw, transform)) } @@ -7041,10 +795,10 @@ extension TryCapture { /// throws an error, matching is abandoned and the error is returned /// to the caller. @_alwaysEmitIntoClient - public init( - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, + public init( + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, repeat each Capture)>, transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + ) where RegexOutput == (Substring, NewCapture, repeat each Capture) { let factory = makeFactory() self.init(factory.captureOptional(componentBuilder(), nil, transform)) } @@ -7063,16 +817,12 @@ extension TryCapture { /// throws an error, matching is abandoned and the error is returned /// to the caller. @_alwaysEmitIntoClient - public init( + public init( as reference: Reference, - @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>, + @RegexComponentBuilder _ componentBuilder: () -> some RegexComponent<(W, repeat each Capture)>, transform: @escaping (W) throws -> NewCapture? - ) where RegexOutput == (Substring, NewCapture, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) { + ) where RegexOutput == (Substring, NewCapture, repeat each Capture) { let factory = makeFactory() self.init(factory.captureOptional(componentBuilder(), reference._raw, transform)) } } - - - -// END AUTO-GENERATED CONTENT diff --git a/Tests/RegexBuilderTests/RegexDSLTests.swift b/Tests/RegexBuilderTests/RegexDSLTests.swift index 7443cae55..bf179ac86 100644 --- a/Tests/RegexBuilderTests/RegexDSLTests.swift +++ b/Tests/RegexBuilderTests/RegexDSLTests.swift @@ -884,6 +884,19 @@ class RegexDSLTests: XCTestCase { } "a" } + + try _testDSLCaptures( + ("aaa", ("aaa", "a")), + matchType: (Substring, Substring).self, ==) + { + Local { + "a" + Capture { + OneOrMore("a", .reluctant) + } + } + "a" + } } func testAssertions() throws { @@ -1827,11 +1840,12 @@ fileprivate let regexWithCapture = #/:(\d+):/# fileprivate let regexWithLabeledCapture = #/:(?\d+):/# @available(SwiftStdlib 5.7, *) fileprivate let regexWithNonCapture = #/:(?:\d+):/# +@available(SwiftStdlib 5.7, *) +fileprivate let regexWithMultipleCaptures = #/:(\d+):(.+):(\d+):/# @available(SwiftStdlib 5.7, *) extension RegexDSLTests { func testLabeledCaptures_regularCapture() throws { - return // The output type of a regex with unlabeled captures is concatenated. let dslWithCapture = Regex { OneOrMore(.word) @@ -1846,7 +1860,6 @@ extension RegexDSLTests { } func testLabeledCaptures_labeledCapture() throws { - return guard #available(macOS 13, *) else { throw XCTSkip("Fix only exists on macOS 13") } @@ -1857,6 +1870,7 @@ extension RegexDSLTests { OneOrMore(.word) } XCTAssert(type(of: dslWithLabeledCapture).self == Regex.self) + let _: Regex = dslWithLabeledCapture let match = try XCTUnwrap(oneNumericField.wholeMatch(of: dslWithLabeledCapture)) XCTAssertEqual(match.output, oneNumericField[...]) @@ -1870,7 +1884,6 @@ extension RegexDSLTests { } func testLabeledCaptures_coalescingWithCapture() throws { - return let coalescingWithCapture = Regex { "e" as Character #/\u{301}(\d*)/# @@ -1887,7 +1900,6 @@ extension RegexDSLTests { } func testLabeledCaptures_bothCapture() throws { - return guard #available(macOS 13, *) else { throw XCTSkip("Fix only exists on macOS 13") } @@ -1901,6 +1913,7 @@ extension RegexDSLTests { OneOrMore(.word) } XCTAssert(type(of: dslWithBothCaptures).self == Regex<(Substring, Substring)>.self) + let _: Regex<(Substring, Substring)> = dslWithBothCaptures let match = try XCTUnwrap(twoNumericFields.wholeMatch(of: dslWithBothCaptures)) XCTAssertEqual(match.output.0, twoNumericFields[...]) @@ -1914,7 +1927,6 @@ extension RegexDSLTests { } func testLabeledCaptures_tooManyCapture() throws { - return guard #available(macOS 13, *) else { throw XCTSkip("Fix only exists on macOS 13") } @@ -1931,14 +1943,16 @@ extension RegexDSLTests { #/:(\d+):/# } XCTAssert(type(of: dslWithTooManyCaptures).self - == Regex<(Substring, Substring, Int, Substring)>.self) + == Regex<(Substring, Substring, Substring, Substring, Substring, Substring, Substring, Substring, Substring, Substring, Substring, Substring, Substring, Substring, Substring, Int, Substring)>.self) let match = try XCTUnwrap(alpha.wholeMatch(of: dslWithTooManyCaptures)) XCTAssertEqual(match.output.0, alpha[...]) XCTAssertEqual(match.output.1, "AAA") - XCTAssertEqual(match.output.2, 123) - XCTAssertEqual(match.output.3, "456") - + XCTAssertEqual(match.output.2, "a") + XCTAssertEqual(match.output.3, "b") + XCTAssertEqual(match.output.15, 123) + XCTAssertEqual(match.output.16, "456") + // All captures groups are available through `AnyRegexOutput`. let anyOutput = AnyRegexOutput(match) XCTAssertEqual(anyOutput.count, 17) @@ -1951,6 +1965,185 @@ extension RegexDSLTests { XCTAssertEqual(anyOutput[15].value as? Int, 123) XCTAssertEqual(anyOutput[16].substring, "456") } + + func testDeeplyNestedCapture() throws { + // Broken up: 'unable to type-check this expression in reasonable time' + let r0 = Optionally { + Capture { + OneOrMore(CharacterClass.digit) + } + } + let r1 = ZeroOrMore { + Capture { + r0 + } + } + let regex = Regex { + Capture { + OneOrMore { + Capture { + r1 + } + } + } + } + XCTAssert(type(of: regex).self + == Regex<(Substring, Substring, Substring, Substring?, Substring??)>.self) + let match = try XCTUnwrap("123".wholeMatch(of: regex)) + XCTAssertEqual(match.output.0, "123") + XCTAssertEqual(match.output.1, "123") + XCTAssertEqual(match.output.4, "123") + // Because capture groups only retain the last capture, these two groups + // are the empty string. After matching/capturing "123", the outer + // `OneOrMore` loops again, and since the innermost quanitifier is optional, + // the second loop matches the empty substring at the end of the input. + // That empty substring is then captured by capture groups 2 and 3. + XCTAssertEqual(match.output.2, "") + XCTAssertEqual(match.output.3, "") + } + + func testVariedNesting() throws { + let regex = Regex { + "a" + OneOrMore { + Capture { + Optionally { + Capture { + "b" + } + } + "c" + } + "d" + } + "e" + ZeroOrMore { + Capture { + "f" + } + } + } + XCTAssert(type(of: regex).self + == Regex<(Substring, Substring, Substring?, Substring?)>.self) + let match = try XCTUnwrap("acdbcdcde".wholeMatch(of: regex)) + XCTAssertEqual(match.output.0, "acdbcdcde") + XCTAssertEqual(match.output.1, "c") + XCTAssertEqual(match.output.2, "b") + XCTAssertNil(match.output.3) + } + + func testVariadicNesting_Compilation() { + let regex_OC = Regex { // sOCsco + "a" + Optionally { + Capture { "b" } + } + } + let _: Regex<(Substring, Substring?)> = regex_OC + + let regex_OCC = Regex { + "a" + Optionally { + Capture { "b" } + Capture { "c" } + } + } + let _: Regex<(Substring, Substring?, Substring?)> = regex_OCC + + let regex_O_OC = Regex { + Optionally { + regex_OC + } + } + let _: Regex<(Substring, Substring??)> = regex_O_OC + + let regex_O_OCC = Regex { + Optionally { + regex_OCC + } + } + let _: Regex<(Substring, Substring??, Substring??)> = regex_O_OCC + + let regex_O_OC_OC = Regex { + Optionally { + regex_OC + regex_OC + } + } + let _: Regex<(Substring, Substring??, Substring??)> = regex_O_OC_OC + + let regex_O_OCC_OC = Regex { + Optionally { + regex_OCC + regex_OC + } + } + let _: Regex<(Substring, Substring??, Substring??, Substring??)> + = regex_O_OCC_OC + + let regex_O_OCC_OCC = Regex { + Optionally { + regex_OCC + regex_OCC + } + } + let _: Regex<(Substring, Substring??, Substring??, Substring??, Substring??)> + = regex_O_OCC_OCC + + let regexChoices_CCOC = Regex { + ChoiceOf { + Capture { "A" } + "b" + "c" + Capture { "D" } + Optionally { + Capture { + "E" + } + } + } + } + let _: Regex<(Substring, Substring?, Substring?, Substring??)> + = regexChoices_CCOC + + let regex_NineCaptures = Regex { + ZeroOrMore { + regexWithMultipleCaptures + } + OneOrMore { + regexWithMultipleCaptures + } + OneOrMore { + Optionally { + regexWithMultipleCaptures + } + } + } + let _: Regex<( + Substring, Substring?, Substring?, Substring?, Substring, Substring, + Substring, Substring?, Substring?, Substring?)> + = regex_NineCaptures + + let regex_ElevenCaptures = Regex { + regex_NineCaptures + regex_OCC + } + let _: Regex<( + Substring, Substring?, Substring?, Substring?, Substring, Substring, + Substring, Substring?, Substring?, Substring?, Substring?, Substring?)> + = regex_ElevenCaptures + + let regex_TwentyCaptures = Regex { + regex_ElevenCaptures + regex_NineCaptures + } + let _: Regex<( + Substring, Substring?, Substring?, Substring?, Substring, Substring, + Substring, Substring?, Substring?, Substring?, Substring?, Substring?, + Substring?, Substring?, Substring?, Substring, Substring, Substring, + Substring?, Substring?, Substring?)> + = regex_TwentyCaptures + } } extension Unicode.Scalar { diff --git a/Tests/RegexTests/MatchTests.swift b/Tests/RegexTests/MatchTests.swift index c02ed34a3..6dde729bd 100644 --- a/Tests/RegexTests/MatchTests.swift +++ b/Tests/RegexTests/MatchTests.swift @@ -1762,6 +1762,15 @@ extension RegexTests { firstMatchTest( #"(?:(?>a)|.b)c"#, input: "123abcacxyz", match: "abc") + firstMatchTest( + #"(?>a+)a"#, input: "aa", match: nil) + firstMatchTest( + #"(?>a+?)a"#, input: "aa", match: "aa") + firstMatchTest( + #"(?>(a+))a"#, input: "aa", match: nil) + firstMatchTest( + #"(?>(a+?))a"#, input: "aa", match: "aa") + // Quantifier behavior inside atomic groups // (?:a+?) matches as few 'a's as possible, after matching the first