Open emil14 opened 2 years ago
Just use string
like javascript does
bytes
and will be need for casting between bytes
and string
under the hoodJust add bytes
as a wrapper around Go's []byte
type
bytes
or []byte
(no arr
type yet)why was it closed? anyway I think about adding byte
(uint8
) now
if we will use list<byte>
instead of bytes
(with Go's []byte
under the hood), there will be huge overhead - it's a []Msg
where each Msg
is an interface, all this for each small uint8!
There should be
bytes
type to work with stuff like JSON