package main func CopySlice_AVX2(dst, src []byte, len int) func CopySlice(dst, src []byte, len int) { for i := 0; i < len; i++ { dst[i] = src[i] } }