...

/

Slice: Length and Capacity

Slice: Length and Capacity

Let’s learn about slice length and capacity.

About slice length and capacity

Both arrays and slices support the len() function for finding out their length. However, slices also have an additional property called capacity that can be found using the cap() function.

Note: The capacity of a slice is really important when we want to select a part of a slice or when we want to reference an array using a slice.

Slice capacity

The capacity shows how much a slice can be expanded without the need to allocate more memory and change the underlying array. Although the capacity of a ...