Package builtin

https://golang.org/pkg/builtin/

Table of Contents

Package builtin provides documentation for Go's predeclared identifiers. The items documented here are not actually in package builtin.

func make(t Type, size ...IntegerType) Type reference

Allocates and initializes an object of type slice, map, or chan (only)

Slice
Map
Channel

func copy(dst, src []Type) int reference