Ejemplo n.º 1
0
func Example_ex6_4() {
	var x intset.IntSet
	x.AddAll(0, 1, 64, 128, 5)
	fmt.Println(x.Elems())

	// Output:
	// [0 1 5 64 128]
}