≡ Menu

GoLang Slice Length

Slice is an essential component of Go programming language. When writing a go program, for most common use-cases, you’ll be using slice instead of array. An array is fixed in size. But slices can be dynamic. The number of elements in a slice can grow dynamically. But, keep in mind that slice uses array in [...]

{ 0 comments }