(b *testing.B)
| 15 | } |
| 16 | |
| 17 | func BenchmarkReadWriteFloat64(b *testing.B) { |
| 18 | var f = 3.9081 |
| 19 | bts := AppendFloat64([]byte{}, f) |
| 20 | b.ResetTimer() |
| 21 | for i := 0; i < b.N; i++ { |
| 22 | bts = AppendFloat64(bts[0:0], f) |
| 23 | f, bts, _ = ReadFloat64Bytes(bts) |
| 24 | } |
| 25 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…