You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Static slices generate two symbols, one for the slice header and one for the backing
array. These could be combined into a single symbol, laid out with the slice header
followed by the backing array. This would reduce binary size, particularly for the
unicode tables.
This does not make sense to do unless issue #7599 is also done, otherwise the backing
array will be needlessly loaded during init.
See https://golang.org/cl/78870047/ for more discussion.
Something similar could probably profitably be done for strings and string headers,
although there is a different approach under discussion at issue #7384.