aboutsummaryrefslogtreecommitdiff
path: root/unsafe.go
diff options
context:
space:
mode:
Diffstat (limited to 'unsafe.go')
-rw-r--r--unsafe.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/unsafe.go b/unsafe.go
new file mode 100644
index 0000000..1c00c7b
--- /dev/null
+++ b/unsafe.go
@@ -0,0 +1,11 @@
+package irc
+
+import "unsafe"
+
+func bytesToString(bytes []byte) (s string) {
+ return unsafe.String(unsafe.SliceData(bytes), len(bytes))
+}
+
+func stringToBytes(s string) (bytes []byte) {
+ return unsafe.Slice(unsafe.StringData(s), len(s))
+}