Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for benchmarkMapDeleteInt32 (0.19 sec)

  1. src/runtime/map_test.go

    	a := make(map[int32][]int)
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		key := int32(i & (n - 1))
    		a[key] = append(a[key], i)
    	}
    }
    
    func benchmarkMapDeleteInt32(b *testing.B, n int) {
    	a := make(map[int32]int, n)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		if len(a) == 0 {
    			b.StopTimer()
    			for j := i; j < i+n; j++ {
    				a[int32(j)] = j
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top