Determine equivalence of two arrays
Copy items from one slice into another
Extend an array by n elements. Caller must initialize those elements.
Concatenate two arrays
Copy an array byte-by-byte from from to to.
Resize dynamic arrays with 0 initializers.
Resize arrays for non-zero initializers. p pointer to array lvalue to be updated newlength new .length property of array sizeelem size of each element of array initsize size of initializer ... initializer
Finalize (if possible) and deallocate target array p
Allocate a new array of length elements. ti is the type of the resulting array, or pointer to element. (For when the array is initialized to 0)
Allocate a new uninitialized array of length elements. ti is the type of the resulting array, or pointer to element.
For when the array has a non-zero initializer.
Finalize the elements in array p