We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b291bb7 commit bff4427Copy full SHA for bff4427
1 file changed
bench_test.go
@@ -2,24 +2,6 @@ package bit
2
3
import "testing"
4
5
-func BenchmarkLeadingZeros(b *testing.B) {
6
- for i := 0; i < b.N; i++ {
7
- LeadingZeros(0xcafecafecafecafe)
8
- }
9
-}
10
-
11
-func BenchmarkTrailingZeros(b *testing.B) {
12
13
- TrailingZeros(0xcafecafecafecafe)
14
15
16
17
-func BenchmarkCount(b *testing.B) {
18
19
- Count(0xcafecafecafecafe)
20
21
22
23
// Number of words in test set.
24
const nw = 1 << 10
25
0 commit comments