QuackatronHQ / Gigarepo

Replace for loop with call to copy for slice SCC-S1001
Anti-pattern
Major
1 occurrence in this check
should use copy(to, from) instead of a loop
18}
19
20func imageCopyA(src []image.Image, dst []image.Image) {
21	for i, img := range src {22		dst[i] = img
23	}
24}