Files
go-easy-utils/strx/to_byte.go
2025-07-08 15:26:54 +08:00

9 lines
140 B
Go

package strx
import "unsafe"
// ToBytes 字符串转字节数组
func ToBytes(v string) []byte {
return *(*[]byte)(unsafe.Pointer(&v))
}