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 {
35
35
36
36
@inline ( never)
37
37
public 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
+ }
41
41
}
42
42
43
43
@inline ( never)
44
44
public 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
+ }
48
48
}
49
49
50
50
@inline ( never)
51
51
public 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
+ }
55
55
}
56
56
57
57
func getLongString( ) -> String {
@@ -77,7 +77,7 @@ func getLongString() -> String {
77
77
78
78
@inline ( never)
79
79
public 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
+ }
83
83
}
You can’t perform that action at this time.
0 commit comments