Insert List at Start
Insert the values of another list at the start of the working list.
Examples
Filter
package main
import (
"fmt"
)
func main() {
s := []int{1, 2, 3, 4, 5}
s2 := []int{6, 7, 8, 9, 10}
s = append(s2, s...)
fmt.Println(s)
}
Last Run
:
[6 7 8 9 10 1 2 3 4 5]