Repeat

原型:func Repeat(b []byte, count int) []byte
解释:将 b 复制 count 次后返回。

ToLower

原型:func ToLower(s []byte) []byte
解释:将字节切片 s 中每个字母转为小写后返回。