Go Slices: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 2: Line 2:


* [[Go Concepts - The Type System#Built-in_Types|Go Built-in Types]]
* [[Go Concepts - The Type System#Built-in_Types|Go Built-in Types]]
* [[Go Arrays|Arrays]]


=Overview=
=Overview=

Revision as of 23:10, 27 March 2016

Internal

Overview

A slice is a reference type that implements a dynamic array.

Slice built-in functions append(), copy().

TODO Deep difference between slice and array (memory model, etc.)

Slice Literals