0xBF
0xBF

0xBF

Follow
Series

Go Cheatsheet


Articles in this series

Go cheatsheet - Slice Utilities

Apr 19, 20212 min read

Slice Empty a slice a := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10} a = a[:0] // or a = nil Prepend b := []int{2, 3, 4} b = append([]int{1},...