Files
lti-api/vendor/github.com/valyala/fasthttp/s2b_new.go
T
GitLab Deploy Bot ad815b3412 .
2025-10-23 11:40:58 +07:00

11 lines
201 B
Go

//go:build go1.20
package fasthttp
import "unsafe"
// s2b converts string to a byte slice without memory allocation.
func s2b(s string) []byte {
return unsafe.Slice(unsafe.StringData(s), len(s))
}