slice Definition
Definition
A slice in Go is a dynamically-sized, flexible view into the elements of an underlying fixed-size array. It consists of three fields: a pointer to the underlying array, the number of elements currently in use, and the capacity (maximum number of elements that can be used).
Browse