(b *testing.B)
| 15 | } |
| 16 | |
| 17 | func BenchmarkIsZeroBytes64K(b *testing.B) { |
| 18 | benchmarkIsZeroBytes(b, make([]byte, 64*1024)) |
| 19 | } |
| 20 | |
| 21 | func benchmarkIsZeroBytes(b *testing.B, slice []byte) { |
| 22 | for range b.N { |
nothing calls this directly
no test coverage detected
searching dependent graphs…