File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -35,23 +35,23 @@ func repeating(_ i: String, count: Int) -> String {
3535
3636@inline ( never)
3737public func run_singleAsciiCharacterCount100( N: Int ) {
38- for _ in 1 ... 5000 * N {
39- blackHole ( repeating ( " x " , count: 100 ) )
40- }
38+ for _ in 1 ... 5000 * N {
39+ blackHole ( repeating ( " x " , count: 100 ) )
40+ }
4141}
4242
4343@inline ( never)
4444public func run_26AsciiCharactersCount2( N: Int ) {
45- for _ in 1 ... 5000 * N {
46- blackHole ( repeating ( " abcdefghijklmnopqrstuvwxyz " , count: 2 ) )
47- }
45+ for _ in 1 ... 5000 * N {
46+ blackHole ( repeating ( " abcdefghijklmnopqrstuvwxyz " , count: 2 ) )
47+ }
4848}
4949
5050@inline ( never)
5151public func run_33CyrillicCharactersCount2( N: Int ) {
52- for _ in 1 ... 5000 * N {
53- blackHole ( repeating ( " абвгґдеєжзиіїйклмнопрстуфхцчшщьюя " , count: 2 ) )
54- }
52+ for _ in 1 ... 5000 * N {
53+ blackHole ( repeating ( " абвгґдеєжзиіїйклмнопрстуфхцчшщьюя " , count: 2 ) )
54+ }
5555}
5656
5757func getLongString( ) -> String {
@@ -77,7 +77,7 @@ func getLongString() -> String {
7777
7878@inline ( never)
7979public func run_longMixedStringCount100( N: Int ) {
80- for _ in 1 ... 5000 * N {
81- blackHole ( repeating ( getLongString ( ) , count: 100 ) )
82- }
80+ for _ in 1 ... 5000 * N {
81+ blackHole ( repeating ( getLongString ( ) , count: 100 ) )
82+ }
8383}
You can’t perform that action at this time.
0 commit comments