func BenchmarkBufferJoin(b *testing.B) { b.StartTimer() b.ReportAllocs() for i := 0; i < b.N; i++ { stringsJoin(data) // **should be bufferJoin** } }
func BenchmarkBufferJoin(b *testing.B) {
b.StartTimer()
b.ReportAllocs()
}