(b *testing.B)
| 36 | } |
| 37 | |
| 38 | func BenchmarkBitwiseLogBase2(b *testing.B) { |
| 39 | for i := 0; i < b.N; i++ { |
| 40 | LogBase2(1024) |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | func BenchmarkMathPAckageLogBase2(b *testing.B) { |
| 45 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected