Documentation ¶ Index ¶ func Free(buf []byte) func Malloc(size int, capacity ...int) []byte Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func Free ¶ func Free(buf []byte) Free should be called when the buf is no longer used. func Malloc ¶ func Malloc(size int, capacity ...int) []byte Malloc supports one or two integer argument. The size specifies the length of the returned slice, which means len(ret) == size. A second integer argument may be provided to specify the minimum capacity, which means cap(ret) >= cap. Types ¶ This section is empty. Source Files ¶ View all Source files cache.go Click to show internal directories. Click to hide internal directories.