(b *testing.B)
| 482 | } |
| 483 | |
| 484 | func BenchmarkListBuilder_Prepend(b *testing.B) { |
| 485 | b.ReportAllocs() |
| 486 | builder := NewListBuilder[int]() |
| 487 | for i := 0; i < b.N; i++ { |
| 488 | builder.Prepend(i) |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | func BenchmarkListBuilder_Set(b *testing.B) { |
| 493 | const n = 10000 |
nothing calls this directly
no test coverage detected
searching dependent graphs…