gotosocial/vendor/github.com/uptrace/bun/extra/bunotel/unsafe.go
2023-05-09 18:19:48 +01:00

19 lines
264 B
Go

// +build !appengine
package bunotel
import "unsafe"
func bytesToString(b []byte) string {
return *(*string)(unsafe.Pointer(&b))
}
func stringToBytes(s string) []byte {
return *(*[]byte)(unsafe.Pointer(
&struct {
string
Cap int
}{s, len(s)},
))
}