Are channels passed by reference implicitly
Technically they’re copied, because when you use make, you are allocating something on the heap, so it’s technically a pointer behind the scenes. But the pointer type is not exposed, so they can be thought of as a reference type. EDIT: From the spec: The built-in function make takes a type T, which must be … Read more