vikunja/vendor/github.com/go-redis/redis/internal/util/unsafe.go
konrad e047673c6b
All checks were successful
the build was successful
Add prometheus endpoint for getting metrics (#33)
2018-12-12 22:50:35 +00: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)},
))
}