From 13ad5d40c49f10a760c907db6dd09425580310f4 Mon Sep 17 00:00:00 2001
From: Robert Griesemer
-s := make([]int, 10, 100); # slice with len(s) == 10, cap(s) == 100 -s := make([]int, 10); # slice with len(s) == cap(s) == 10 -c := make(chan int, 10); # channel with a buffer size of 10 -m := make(map[string] int, 100); # map with initial space for 100 elements +s := make([]int, 10, 100); // slice with len(s) == 10, cap(s) == 100 +s := make([]int, 10); // slice with len(s) == cap(s) == 10 +c := make(chan int, 10); // channel with a buffer size of 10 +m := make(map[string] int, 100); // map with initial space for 100 elements-- 2.50.0