(b *testing.B)
| 155 | } |
| 156 | |
| 157 | func BenchmarkByteAtBrandNew(b *testing.B) { |
| 158 | bigint := MustParseBig256("0x18F8F8F1000111000110011100222004330052300000000000000000FEFCF3CC") |
| 159 | for i := 0; i < b.N; i++ { |
| 160 | bigEndianByteAt(bigint, 15) |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | func BenchmarkByteAt(b *testing.B) { |
| 165 | bigint := MustParseBig256("0x18F8F8F1000111000110011100222004330052300000000000000000FEFCF3CC") |
nothing calls this directly
no test coverage detected