12 lines
285 B
Go
12 lines
285 B
Go
//go:build go1.20
|
|
|
|
package fasthttp
|
|
|
|
import "unsafe"
|
|
|
|
// b2s converts byte slice to a string without memory allocation.
|
|
// See https://groups.google.com/forum/#!msg/Golang-Nuts/ENgbUzYvCuU/90yGx7GUAgAJ .
|
|
func b2s(b []byte) string {
|
|
return unsafe.String(unsafe.SliceData(b), len(b))
|
|
}
|