Ejemplo n.º 1
0
func buildMapSeries2(size int) concurrentmap.ConcurrentMap {
	cMap := concurrentmap.ConcurrentMap2{}
	cMap.ConstructMap(size)

	for i := 0; i < numberOfTests; i++ {
		s := strconv.Itoa(i)
		cMap.Put(s, s)
	}
	return &cMap
}