Go Slices
Jump to navigation
Jump to search
External
Internal
Overview
A slice is a descriptor for a contiguous segment of an underlying array. A slice type denotes the set of all slices of arrays of its element types. The slice was used to be referred to as a reference type, but not anymore, as reference type terminology was removed from Go documentation.
A slice contains a pointer to the underlying array, a length and a capacity. More details available in the structure section.
Go uses pass-by-value, so when slice arguments are passed to functions, the internal fields are copied across, including the pointer to the underlying array. Therefore, the underlying data structure is intrinsically shared even in presence of pass-by-value.