From 410ea6e4edb7f3d4e6a518976e01967c95f23159 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Mon, 24 Mar 2025 08:19:27 +0800 Subject: identifier.go, unsafe.go: Document unsafe usage --- unsafe.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'unsafe.go') diff --git a/unsafe.go b/unsafe.go index 7661ace..ed1e56c 100644 --- a/unsafe.go +++ b/unsafe.go @@ -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)) } -- cgit v1.2.3