@@ -17,7 +17,7 @@ final class TestThrottle: XCTestCase {
1717 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
1818 validate {
1919 " abcdefghijk| "
20- $0. inputs [ 0 ] . throttle ( for: . steps( 0 ) , clock: $0. clock)
20+ $0. inputs [ 0 ] . _throttle ( for: . steps( 0 ) , clock: $0. clock)
2121 " abcdefghijk| "
2222 }
2323 }
@@ -26,7 +26,7 @@ final class TestThrottle: XCTestCase {
2626 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
2727 validate {
2828 " abcdefghijk| "
29- $0. inputs [ 0 ] . throttle ( for: . steps( 0 ) , clock: $0. clock, latest: false )
29+ $0. inputs [ 0 ] . _throttle ( for: . steps( 0 ) , clock: $0. clock, latest: false )
3030 " abcdefghijk| "
3131 }
3232 }
@@ -35,7 +35,7 @@ final class TestThrottle: XCTestCase {
3535 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
3636 validate {
3737 " abcdefghijk| "
38- $0. inputs [ 0 ] . throttle ( for: . steps( 1 ) , clock: $0. clock)
38+ $0. inputs [ 0 ] . _throttle ( for: . steps( 1 ) , clock: $0. clock)
3939 " abcdefghijk| "
4040 }
4141 }
@@ -44,7 +44,7 @@ final class TestThrottle: XCTestCase {
4444 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
4545 validate {
4646 " abcdefghijk| "
47- $0. inputs [ 0 ] . throttle ( for: . steps( 1 ) , clock: $0. clock, latest: false )
47+ $0. inputs [ 0 ] . _throttle ( for: . steps( 1 ) , clock: $0. clock, latest: false )
4848 " abcdefghijk| "
4949 }
5050 }
@@ -53,7 +53,7 @@ final class TestThrottle: XCTestCase {
5353 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
5454 validate {
5555 " abcdefghijk| "
56- $0. inputs [ 0 ] . throttle ( for: . steps( 2 ) , clock: $0. clock)
56+ $0. inputs [ 0 ] . _throttle ( for: . steps( 2 ) , clock: $0. clock)
5757 " a-c-e-g-i-k| "
5858 }
5959 }
@@ -62,7 +62,7 @@ final class TestThrottle: XCTestCase {
6262 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
6363 validate {
6464 " abcdefghijk| "
65- $0. inputs [ 0 ] . throttle ( for: . steps( 2 ) , clock: $0. clock, latest: false )
65+ $0. inputs [ 0 ] . _throttle ( for: . steps( 2 ) , clock: $0. clock, latest: false )
6666 " a-b-d-f-h-j| "
6767 }
6868 }
@@ -71,7 +71,7 @@ final class TestThrottle: XCTestCase {
7171 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
7272 validate {
7373 " abcdefghijk| "
74- $0. inputs [ 0 ] . throttle ( for: . steps( 3 ) , clock: $0. clock)
74+ $0. inputs [ 0 ] . _throttle ( for: . steps( 3 ) , clock: $0. clock)
7575 " a--d--g--j--[k|] "
7676 }
7777 }
@@ -80,7 +80,7 @@ final class TestThrottle: XCTestCase {
8080 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
8181 validate {
8282 " abcdefghijk| "
83- $0. inputs [ 0 ] . throttle ( for: . steps( 3 ) , clock: $0. clock, latest: false )
83+ $0. inputs [ 0 ] . _throttle ( for: . steps( 3 ) , clock: $0. clock, latest: false )
8484 " a--b--e--h--[k|] "
8585 }
8686 }
@@ -89,7 +89,7 @@ final class TestThrottle: XCTestCase {
8989 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
9090 validate {
9191 " abcdef^hijk| "
92- $0. inputs [ 0 ] . throttle ( for: . steps( 2 ) , clock: $0. clock)
92+ $0. inputs [ 0 ] . _throttle ( for: . steps( 2 ) , clock: $0. clock)
9393 " a-c-e-^ "
9494 }
9595 }
@@ -98,7 +98,7 @@ final class TestThrottle: XCTestCase {
9898 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
9999 validate {
100100 " abcdef^hijk| "
101- $0. inputs [ 0 ] . throttle ( for: . steps( 2 ) , clock: $0. clock, latest: false )
101+ $0. inputs [ 0 ] . _throttle ( for: . steps( 2 ) , clock: $0. clock, latest: false )
102102 " a-b-d-^ "
103103 }
104104 }
@@ -107,7 +107,7 @@ final class TestThrottle: XCTestCase {
107107 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
108108 validate {
109109 " -a-b-c-d-e-f-g-h-i-j-k-| "
110- $0. inputs [ 0 ] . throttle ( for: . steps( 1 ) , clock: $0. clock)
110+ $0. inputs [ 0 ] . _throttle ( for: . steps( 1 ) , clock: $0. clock)
111111 " -a-b-c-d-e-f-g-h-i-j-k-| "
112112 }
113113 }
@@ -116,7 +116,7 @@ final class TestThrottle: XCTestCase {
116116 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
117117 validate {
118118 " -a-b-c-d-e-f-g-h-i-j-k-| "
119- $0. inputs [ 0 ] . throttle ( for: . steps( 2 ) , clock: $0. clock)
119+ $0. inputs [ 0 ] . _throttle ( for: . steps( 2 ) , clock: $0. clock)
120120 " -a-b-c-d-e-f-g-h-i-j-k-| "
121121 }
122122 }
@@ -125,7 +125,7 @@ final class TestThrottle: XCTestCase {
125125 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
126126 validate {
127127 " --a--b--c--d--e--f--g| "
128- $0. inputs [ 0 ] . throttle ( for: . steps( 2 ) , clock: $0. clock)
128+ $0. inputs [ 0 ] . _throttle ( for: . steps( 2 ) , clock: $0. clock)
129129 " --a--b--c--d--e--f--g| "
130130 }
131131 }
@@ -134,7 +134,7 @@ final class TestThrottle: XCTestCase {
134134 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
135135 validate {
136136 " -a-b-c-d-e-f-g-h-i-j-k-| "
137- $0. inputs [ 0 ] . throttle ( for: . steps( 3 ) , clock: $0. clock)
137+ $0. inputs [ 0 ] . _throttle ( for: . steps( 3 ) , clock: $0. clock)
138138 " -a---c---e---g---i---k-| "
139139 }
140140 }
@@ -143,7 +143,7 @@ final class TestThrottle: XCTestCase {
143143 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
144144 validate {
145145 " abcdefghijkl| "
146- $0. inputs [ 0 ] . throttle ( for: . steps( 3 ) , clock: $0. clock, latest: false )
146+ $0. inputs [ 0 ] . _throttle ( for: . steps( 3 ) , clock: $0. clock, latest: false )
147147 " a--b--e--h--[k|] "
148148 }
149149 }
@@ -152,7 +152,7 @@ final class TestThrottle: XCTestCase {
152152 guard #available( macOS 13 . 0 , iOS 16 . 0 , watchOS 9 . 0 , tvOS 16 . 0 , * ) else { throw XCTSkip ( " Skipped due to Clock/Instant/Duration availability " ) }
153153 validate {
154154 " abcdefghijkl| "
155- $0. inputs [ 0 ] . throttle ( for: . steps( 3 ) , clock: $0. clock, latest: true )
155+ $0. inputs [ 0 ] . _throttle ( for: . steps( 3 ) , clock: $0. clock, latest: true )
156156 " a--d--g--j--[l|] "
157157 }
158158 }
0 commit comments