summaryrefslogtreecommitdiff
path: root/vendor/codeberg.org/gruf/go-byteutil/bytes.go
diff options
context:
space:
mode:
authorLibravatar Terin Stock <terinjokes@gmail.com>2025-03-09 17:47:56 +0100
committerLibravatar Terin Stock <terinjokes@gmail.com>2025-12-01 22:08:04 +0100
commitb1af8fd87760b34e3ff2fd3bda38f211815a0473 (patch)
tree9317fad1a7ec298d7a8d2678e4e422953bbc6f33 /vendor/codeberg.org/gruf/go-byteutil/bytes.go
parent[chore] update URLs to forked source (diff)
downloadgotosocial-b1af8fd87760b34e3ff2fd3bda38f211815a0473.tar.xz
[chore] remove vendor
Diffstat (limited to 'vendor/codeberg.org/gruf/go-byteutil/bytes.go')
-rw-r--r--vendor/codeberg.org/gruf/go-byteutil/bytes.go27
1 files changed, 0 insertions, 27 deletions
diff --git a/vendor/codeberg.org/gruf/go-byteutil/bytes.go b/vendor/codeberg.org/gruf/go-byteutil/bytes.go
deleted file mode 100644
index 880cb4b6d..000000000
--- a/vendor/codeberg.org/gruf/go-byteutil/bytes.go
+++ /dev/null
@@ -1,27 +0,0 @@
-package byteutil
-
-import (
- "unsafe"
-)
-
-// Copy returns a copy of []byte.
-func Copy(b []byte) []byte {
- if b == nil {
- return nil
- }
- p := make([]byte, len(b))
- copy(p, b)
- return p
-}
-
-// B2S returns a string representation of []byte without allocation.
-// Since Go strings are immutable, the bytes passed to String must
-// not be modified as long as the returned string value exists.
-func B2S(b []byte) string {
- return unsafe.String(unsafe.SliceData(b), len(b))
-}
-
-// S2B returns a []byte representation of string without allocation.
-func S2B(s string) []byte {
- return unsafe.Slice(unsafe.StringData(s), len(s))
-}