Remove unused code

This commit is contained in:
Kovid Goyal
2023-02-03 09:51:54 +05:30
parent 8ce80d8962
commit bed4f33be8
2 changed files with 0 additions and 46 deletions

25
tools/utils/unsafe.go Normal file
View File

@@ -0,0 +1,25 @@
// License: GPLv3 Copyright: 2023, Kovid Goyal, <kovid at kovidgoyal.net>
//go:build go1.20
package utils
import (
"fmt"
"unsafe"
)
var _ = fmt.Print
// Unsafely converts s into a byte slice.
// If you modify b, then s will also be modified. This violates the
// property that strings are immutable.
func UnsafeStringToBytes(s string) (b []byte) {
return unsafe.Slice(unsafe.StringData(s), len(s))
}
// Unsafely converts b into a string.
// If you modify b, then s will also be modified. This violates the
// property that strings are immutable.
func UnsafeBytesToString(b []byte) (s string) {
return unsafe.String(unsafe.SliceData(b), len(b))
}