mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
2328ddfeca
All functions left in the old package unsafe were provided byte slice views of other types. Rename the package accordingly and avoid a name clash with the standard library package unsafe. Signed-off-by: Elias Naur <mail@eliasnaur.com>
36 lines
811 B
Go
36 lines
811 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
// Package byteslice provides byte slice views of other Go values such as
|
|
// slices and structs.
|
|
package byteslice
|
|
|
|
import (
|
|
"reflect"
|
|
"unsafe"
|
|
)
|
|
|
|
// Struct returns a byte slice view of a struct.
|
|
func Struct(s interface{}) []byte {
|
|
v := reflect.ValueOf(s).Elem()
|
|
sz := int(v.Type().Size())
|
|
var res []byte
|
|
h := (*reflect.SliceHeader)(unsafe.Pointer(&res))
|
|
h.Data = uintptr(unsafe.Pointer(v.UnsafeAddr()))
|
|
h.Cap = sz
|
|
h.Len = sz
|
|
return res
|
|
}
|
|
|
|
// Slice returns a byte slice view of a slice.
|
|
func Slice(s interface{}) []byte {
|
|
v := reflect.ValueOf(s)
|
|
first := v.Index(0)
|
|
sz := int(first.Type().Size())
|
|
var res []byte
|
|
h := (*reflect.SliceHeader)(unsafe.Pointer(&res))
|
|
h.Data = first.UnsafeAddr()
|
|
h.Cap = v.Cap() * sz
|
|
h.Len = v.Len() * sz
|
|
return res
|
|
}
|