Go Slices

From NovaOrdis Knowledge Base
Revision as of 17:18, 15 August 2024 by Ovidiu (talk | contribs) (→‎Structure)
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. A slice, once initialized, is always associated with the underlaying array that holds its elements. The slice shares storage with its array, and other slices of the same array.

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.

Structure

Declaration and Initialization

TODEPLETE

Go Slices TODPLETE