diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-24 21:47:40 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-24 22:02:18 +0800 |
commit | dbfadc5a7e5bd3163b49878994063cd6d869fe6a (patch) | |
tree | 5200e50de2b41a1f7e4da805fea1234141174e04 /unsafe.go | |
parent | csolver: Remove, it's not needed anymore (diff) | |
download | powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.tar.gz powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.tar.zst powxy-dbfadc5a7e5bd3163b49878994063cd6d869fe6a.zip |
Refactorv0.1.13
Diffstat (limited to 'unsafe.go')
-rw-r--r-- | unsafe.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ package main import "unsafe" -// Converts a string to a byte slice without copying the string. +// stringToBytes 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) { |