See https://golang.org/src/strings/builder.go#L45 func bytesToString(b []byte) string { return unsafe.String(unsafe.SliceData(b), len(b)) }
(s string)
| 4248 | // } |
| 4249 | |
| 4250 | func stringToBytes(s string) []byte { |
| 4251 | return unsafe.Slice(unsafe.StringData(s), len(s)) |
| 4252 | } |
| 4253 | |
| 4254 | type ( |
| 4255 | // ErrorHandler describes a context error handler which applies on |
no outgoing calls
no test coverage detected
searching dependent graphs…