1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-02 20:54:13 +00:00
Beego/vendor/github.com/go-redis/redis/internal/util/unsafe.go
2018-11-09 12:37:28 +08:00

23 lines
362 B
Go

// +build !appengine
package util
import (
"unsafe"
)
// BytesToString converts byte slice to string.
func BytesToString(b []byte) string {
return *(*string)(unsafe.Pointer(&b))
}
// StringToBytes converts string to byte slice.
func StringToBytes(s string) []byte {
return *(*[]byte)(unsafe.Pointer(
&struct {
string
Cap int
}{s, len(s)},
))
}