On Sat, Feb 27, 2021 at 8:00 PM tapi...@gmail.com <tapir....@gmail.com> wrote:
>
> 1.
>
> func String2ByteSlice(s string) []byte {
>     return (*[^uint(0) >> 1]byte)(unsafe.Pointer(&s))[:len(s):len(s)]
> }

This doesn't do what you probably want, as &s is not the address of
the bytes in the string.


> 2.
>
> func String2ByteSlice(s string) []byte {
>     return *(*[]byte)(unsafe.Pointer(&struct{string; int}{s, len(s)}))
> }

This is more likely to work but it's not safe.

Ian

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CAOyqgcWLnO4fkh9e5unu94ZQR8s6%3Dfp3XSXn7DqtPPkxAcoKxw%40mail.gmail.com.

Reply via email to