@@ -501,15 +501,15 @@ extension RegexBuilder {
501501 }
502502}
503503@_disfavoredOverload
504- public func many < Component: RegexProtocol > (
504+ public func zeroOrMore < Component: RegexProtocol > (
505505 _ component: Component ,
506506 _ behavior: QuantificationBehavior = . eagerly
507507) -> Regex < Substring > {
508508 . init( node: . quantification( . zeroOrMore, behavior. astKind, component. regex. root) )
509509}
510510
511511@_disfavoredOverload
512- public func many < Component: RegexProtocol > (
512+ public func zeroOrMore < Component: RegexProtocol > (
513513 _ behavior: QuantificationBehavior = . eagerly,
514514 @RegexBuilder _ component: ( ) -> Component
515515) -> Regex < Substring > {
@@ -579,15 +579,15 @@ extension RegexBuilder {
579579 }
580580}
581581
582- public func many < W, C0, Component: RegexProtocol > (
582+ public func zeroOrMore < W, C0, Component: RegexProtocol > (
583583 _ component: Component ,
584584 _ behavior: QuantificationBehavior = . eagerly
585585) -> Regex < ( Substring , [ C0 ] ) > where Component. Match == ( W , C0 ) {
586586 . init( node: . quantification( . zeroOrMore, behavior. astKind, component. regex. root) )
587587}
588588
589589
590- public func many < W, C0, Component: RegexProtocol > (
590+ public func zeroOrMore < W, C0, Component: RegexProtocol > (
591591 _ behavior: QuantificationBehavior = . eagerly,
592592 @RegexBuilder _ component: ( ) -> Component
593593) -> Regex < ( Substring , [ C0 ] ) > where Component. Match == ( W , C0 ) {
@@ -657,15 +657,15 @@ extension RegexBuilder {
657657 }
658658}
659659
660- public func many < W, C0, C1, Component: RegexProtocol > (
660+ public func zeroOrMore < W, C0, C1, Component: RegexProtocol > (
661661 _ component: Component ,
662662 _ behavior: QuantificationBehavior = . eagerly
663663) -> Regex < ( Substring , [ ( C0 , C1 ) ] ) > where Component. Match == ( W , C0 , C1 ) {
664664 . init( node: . quantification( . zeroOrMore, behavior. astKind, component. regex. root) )
665665}
666666
667667
668- public func many < W, C0, C1, Component: RegexProtocol > (
668+ public func zeroOrMore < W, C0, C1, Component: RegexProtocol > (
669669 _ behavior: QuantificationBehavior = . eagerly,
670670 @RegexBuilder _ component: ( ) -> Component
671671) -> Regex < ( Substring , [ ( C0 , C1 ) ] ) > where Component. Match == ( W , C0 , C1 ) {
@@ -735,15 +735,15 @@ extension RegexBuilder {
735735 }
736736}
737737
738- public func many < W, C0, C1, C2, Component: RegexProtocol > (
738+ public func zeroOrMore < W, C0, C1, C2, Component: RegexProtocol > (
739739 _ component: Component ,
740740 _ behavior: QuantificationBehavior = . eagerly
741741) -> Regex < ( Substring , [ ( C0 , C1 , C2 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 ) {
742742 . init( node: . quantification( . zeroOrMore, behavior. astKind, component. regex. root) )
743743}
744744
745745
746- public func many < W, C0, C1, C2, Component: RegexProtocol > (
746+ public func zeroOrMore < W, C0, C1, C2, Component: RegexProtocol > (
747747 _ behavior: QuantificationBehavior = . eagerly,
748748 @RegexBuilder _ component: ( ) -> Component
749749) -> Regex < ( Substring , [ ( C0 , C1 , C2 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 ) {
@@ -813,15 +813,15 @@ extension RegexBuilder {
813813 }
814814}
815815
816- public func many < W, C0, C1, C2, C3, Component: RegexProtocol > (
816+ public func zeroOrMore < W, C0, C1, C2, C3, Component: RegexProtocol > (
817817 _ component: Component ,
818818 _ behavior: QuantificationBehavior = . eagerly
819819) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 ) {
820820 . init( node: . quantification( . zeroOrMore, behavior. astKind, component. regex. root) )
821821}
822822
823823
824- public func many < W, C0, C1, C2, C3, Component: RegexProtocol > (
824+ public func zeroOrMore < W, C0, C1, C2, C3, Component: RegexProtocol > (
825825 _ behavior: QuantificationBehavior = . eagerly,
826826 @RegexBuilder _ component: ( ) -> Component
827827) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 ) {
@@ -891,15 +891,15 @@ extension RegexBuilder {
891891 }
892892}
893893
894- public func many < W, C0, C1, C2, C3, C4, Component: RegexProtocol > (
894+ public func zeroOrMore < W, C0, C1, C2, C3, C4, Component: RegexProtocol > (
895895 _ component: Component ,
896896 _ behavior: QuantificationBehavior = . eagerly
897897) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 , C4 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 , C4 ) {
898898 . init( node: . quantification( . zeroOrMore, behavior. astKind, component. regex. root) )
899899}
900900
901901
902- public func many < W, C0, C1, C2, C3, C4, Component: RegexProtocol > (
902+ public func zeroOrMore < W, C0, C1, C2, C3, C4, Component: RegexProtocol > (
903903 _ behavior: QuantificationBehavior = . eagerly,
904904 @RegexBuilder _ component: ( ) -> Component
905905) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 , C4 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 , C4 ) {
@@ -969,15 +969,15 @@ extension RegexBuilder {
969969 }
970970}
971971
972- public func many < W, C0, C1, C2, C3, C4, C5, Component: RegexProtocol > (
972+ public func zeroOrMore < W, C0, C1, C2, C3, C4, C5, Component: RegexProtocol > (
973973 _ component: Component ,
974974 _ behavior: QuantificationBehavior = . eagerly
975975) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 , C4 , C5 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 , C4 , C5 ) {
976976 . init( node: . quantification( . zeroOrMore, behavior. astKind, component. regex. root) )
977977}
978978
979979
980- public func many < W, C0, C1, C2, C3, C4, C5, Component: RegexProtocol > (
980+ public func zeroOrMore < W, C0, C1, C2, C3, C4, C5, Component: RegexProtocol > (
981981 _ behavior: QuantificationBehavior = . eagerly,
982982 @RegexBuilder _ component: ( ) -> Component
983983) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 , C4 , C5 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 , C4 , C5 ) {
@@ -1047,15 +1047,15 @@ extension RegexBuilder {
10471047 }
10481048}
10491049
1050- public func many < W, C0, C1, C2, C3, C4, C5, C6, Component: RegexProtocol > (
1050+ public func zeroOrMore < W, C0, C1, C2, C3, C4, C5, C6, Component: RegexProtocol > (
10511051 _ component: Component ,
10521052 _ behavior: QuantificationBehavior = . eagerly
10531053) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 , C4 , C5 , C6 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 ) {
10541054 . init( node: . quantification( . zeroOrMore, behavior. astKind, component. regex. root) )
10551055}
10561056
10571057
1058- public func many < W, C0, C1, C2, C3, C4, C5, C6, Component: RegexProtocol > (
1058+ public func zeroOrMore < W, C0, C1, C2, C3, C4, C5, C6, Component: RegexProtocol > (
10591059 _ behavior: QuantificationBehavior = . eagerly,
10601060 @RegexBuilder _ component: ( ) -> Component
10611061) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 , C4 , C5 , C6 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 ) {
@@ -1125,15 +1125,15 @@ extension RegexBuilder {
11251125 }
11261126}
11271127
1128- public func many < W, C0, C1, C2, C3, C4, C5, C6, C7, Component: RegexProtocol > (
1128+ public func zeroOrMore < W, C0, C1, C2, C3, C4, C5, C6, C7, Component: RegexProtocol > (
11291129 _ component: Component ,
11301130 _ behavior: QuantificationBehavior = . eagerly
11311131) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 ) {
11321132 . init( node: . quantification( . zeroOrMore, behavior. astKind, component. regex. root) )
11331133}
11341134
11351135
1136- public func many < W, C0, C1, C2, C3, C4, C5, C6, C7, Component: RegexProtocol > (
1136+ public func zeroOrMore < W, C0, C1, C2, C3, C4, C5, C6, C7, Component: RegexProtocol > (
11371137 _ behavior: QuantificationBehavior = . eagerly,
11381138 @RegexBuilder _ component: ( ) -> Component
11391139) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 ) {
@@ -1203,15 +1203,15 @@ extension RegexBuilder {
12031203 }
12041204}
12051205
1206- public func many < W, C0, C1, C2, C3, C4, C5, C6, C7, C8, Component: RegexProtocol > (
1206+ public func zeroOrMore < W, C0, C1, C2, C3, C4, C5, C6, C7, C8, Component: RegexProtocol > (
12071207 _ component: Component ,
12081208 _ behavior: QuantificationBehavior = . eagerly
12091209) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 , C8 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 , C8 ) {
12101210 . init( node: . quantification( . zeroOrMore, behavior. astKind, component. regex. root) )
12111211}
12121212
12131213
1214- public func many < W, C0, C1, C2, C3, C4, C5, C6, C7, C8, Component: RegexProtocol > (
1214+ public func zeroOrMore < W, C0, C1, C2, C3, C4, C5, C6, C7, C8, Component: RegexProtocol > (
12151215 _ behavior: QuantificationBehavior = . eagerly,
12161216 @RegexBuilder _ component: ( ) -> Component
12171217) -> Regex < ( Substring , [ ( C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 , C8 ) ] ) > where Component. Match == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 , C8 ) {
0 commit comments