diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-24 08:19:27 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-24 08:21:04 +0800 |
commit | 410ea6e4edb7f3d4e6a518976e01967c95f23159 (patch) | |
tree | bcdef3dcad5ec78b12f3dee5b450baccbc301c7b /unsafe.go | |
parent | main.go: Log template execution errors (diff) | |
download | powxy-410ea6e4edb7f3d4e6a518976e01967c95f23159.tar.gz powxy-410ea6e4edb7f3d4e6a518976e01967c95f23159.tar.zst powxy-410ea6e4edb7f3d4e6a518976e01967c95f23159.zip |
identifier.go, unsafe.go: Document unsafe usage
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)) } |