Go Slices: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 4: Line 4:


=Overview=
=Overview=
A slice is a descriptor for a contiguous segment of an underlying [[Go_Arrays#Overview|array]].
A slice is a descriptor for a contiguous segment of an underlying [[Go_Arrays#Overview|array]]. A slice type denotes the set of all slices of arrays of its element types. Slice was used to be referred to as a reference type, but not anymore, as reference type terminology was removed from Go documentation.


=TODEPLETE=
=TODEPLETE=
{{Internal|Go_Slices_TODEPLETE|Go Slices TODPLETE}}
{{Internal|Go_Slices_TODEPLETE|Go Slices TODPLETE}}

Revision as of 16:56, 15 August 2024

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. Slice was used to be referred to as a reference type, but not anymore, as reference type terminology was removed from Go documentation.

TODEPLETE

Go Slices TODPLETE