1
0
mirror of https://github.com/redis/go-redis.git synced 2025-08-11 22:02:41 +03:00
Files
go-redis/internal/unsafe.go
Vladimir Mihailenco abb85b0fb8 Remove StringToBytes
2018-01-15 16:15:20 +02:00

13 lines
189 B
Go

// +build !appengine
package internal
import (
"unsafe"
)
// BytesToString converts byte slice to string.
func BytesToString(b []byte) string {
return *(*string)(unsafe.Pointer(&b))
}