[benchmark] Stop capitalizing function and variable names

This commit is contained in:
Karoy Lorentey
2021-09-15 21:03:53 -07:00
parent 958733c812
commit 8910b75cfe
172 changed files with 1909 additions and 1917 deletions

View File

@@ -47,10 +47,10 @@ func myArrayReplace<
}
@inline(never)
public func run_PopFrontArrayGeneric(_ N: Int) {
public func run_PopFrontArrayGeneric(_ n: Int) {
let orig = Array(repeating: 1, count: arrayCount)
var a = [Int]()
for _ in 1...N {
for _ in 1...n {
var result = 0
a.append(contentsOf: orig)
while a.count != 0 {