Newer
Older
pokemon-go-trade / vendor / github.com / go-pg / pg / internal / unsafe.go
Simon Lindgren on 12 Feb 2021 366 bytes first commit
// +build !appengine

package internal

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)},
	))
}