Files
fasthttp/s2b_new.go
T
tyltr dd1f3b97e5 update build tag (#1695)
* update  go.sum

* update build tag
2024-01-18 04:41:42 +01:00

11 lines
211 B
Go

//go:build go1.20 || go1.21
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))
}