Closed illia-li closed 1 day ago
Changes:
(string)("")
([]byte)(nil)
string
[]byte
[16]byte
go types
zero data
*[]byte
(*[]byte)(*[nil])
([]byte)([])
(*[]byte)(*[])
Changes:
(string)("")
and([]byte)(nil)
, was unsupported before, now is supported.string
,[]byte
,[16]byte
go types
, was unsupported before, now is supported.zero data
into[]byte
,*[]byte
, returned([]byte)(nil)
and(*[]byte)(*[nil])
before, now returns([]byte)([])
and(*[]byte)(*[])