diff options
Diffstat (limited to 'unsafe.go')
-rw-r--r-- | unsafe.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -5,6 +5,9 @@ package main import "unsafe" +// Converts a string to a byte slice without copying the string. +// Memory is borrowed from the string. +// The resulting byte slice must not be modified in any form. func stringToBytes(s string) (bytes []byte) { return unsafe.Slice(unsafe.StringData(s), len(s)) } |