aboutsummaryrefslogtreecommitdiff
path: root/unsafe.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 12:02:14 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 12:02:14 +0800
commit2a909b0888a485d619af20b30f21fe31f0de8f6d (patch)
treef7ad1fed2e5bef55ff9e38bcd106c6a2f0fa497d /unsafe.go
parentSeparate validateBitZeros into a separate file (diff)
downloadpowxy-2a909b0888a485d619af20b30f21fe31f0de8f6d.tar.gz
powxy-2a909b0888a485d619af20b30f21fe31f0de8f6d.tar.zst
powxy-2a909b0888a485d619af20b30f21fe31f0de8f6d.zip
Separate unsafe operations to unsafe.go
Diffstat (limited to 'unsafe.go')
-rw-r--r--unsafe.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/unsafe.go b/unsafe.go
new file mode 100644
index 0000000..4a7b2d0
--- /dev/null
+++ b/unsafe.go
@@ -0,0 +1,7 @@
+package main
+
+import "unsafe"
+
+func stringToBytes(s string) (bytes []byte) {
+ return unsafe.Slice(unsafe.StringData(s), len(s))
+}