init: v1.0.0

This commit is contained in:
yaole
2026-05-27 23:03:00 +08:00
commit 8d97f750eb
466 changed files with 80067 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
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]
}
}