README (415B)
1 The slices module provides some utility functions for working with slices. In 2 order to work with a user-supplied slice of an arbitrary type, the slice must be 3 cast to []void and the size of the member type passed alongside it. These 4 functions provide support code for common operations such as indexing and 5 appending, which are normally provided by language features, but which are not 6 available for []void slices.