(b *testing.B)
| 404 | } |
| 405 | |
| 406 | func BenchmarkList_Prepend(b *testing.B) { |
| 407 | b.ReportAllocs() |
| 408 | l := NewList[int]() |
| 409 | for i := 0; i < b.N; i++ { |
| 410 | l = l.Prepend(i) |
| 411 | } |
| 412 | } |
| 413 | |
| 414 | func BenchmarkList_Set(b *testing.B) { |
| 415 | const n = 10000 |
nothing calls this directly
no test coverage detected
searching dependent graphs…