Go Slices

From NovaOrdis Knowledge Base
Revision as of 01:21, 19 August 2024 by Ovidiu (talk | contribs) (→‎Overview)
Jump to navigation Jump to search

External

Internal

Overview

A slice is a descriptor, or a header, for a contiguous segment of an underlying array, stored separately from the slice variable. The slice provides access to a numbered sequence of elements from that array. A slice type denotes the set of all slices of arrays of its element type.

A slice contains a pointer to the underlying array, a length and a capacity. More details available in the structure section. A slice, once initialized, is always associated with the underlying array that holds its elements. The slice shares storage with its array, and other slices of the same array. A distinct slice that shares the underlying array with an original slice can be created by slicing the original slice with a slice expression.

Slices are passed by value, like an other Go variable, but when that happens, the slice argument of a function and the internal variable copy of the slice still share the underlying array.

The Go documentation used to refer to slices as reference types, but not anymore. The "reference type" terminology was removed from Go documentation.

Structure

Under the covers, a slice is a structure that contains:

  • a pointer to the first element of the slice, as stored in the underlying array.
  • an integer length of the slice.
  • an integer capacity

These elements are referred to as the contents, or the fields, or the elements, or the components of the slice.

Pointer

Length

Capacity

Slices and Pass-by-Value

Go uses pass-by-value, so when a slice argument is passed to a function, the internal fields are copied across on the function stack, including the pointer to the underlying array. Therefore, the underlying array data structure is intrinsically shared, even in case of pass-by-value. Both the original slice header and the copy of the header passed to the function describe the same array. If the function changes the underlying array via its copy of the slice, the modified elements can be seen outside the function through the original slice variable.

However, if the function modifies the elements of the slice, like the length, or the pointer to the array element, those changes naturally do not propagate outside of the function. Only the changes to the underlying array do.

Declaration and Initialization

Initialization with make()

Initialization with a Composite Literal

Initialization by Slicing the Underlying Array

Operators

Slice Expressions

Slice Expressions

TODEPLETE

Go Slices TODPLETE