Documentation
¶
Overview ¶
Some functionality identical to the bytes package from the standard library.
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Split ¶
Splits input slice to subslices separated by separator.
If a preparer function is specified, the slice prepared by it will be used as the output slice. Otherwise, an individual slice will be created for each Split function call. The slice returned by the preparer function may be shorter than the requested length, in which case the splitting of the input slice will be limited by the length of the output slice.
Example ¶
package main import ( "fmt" "github.com/akramarenkov/alter/bytes" ) func main() { buffer := make([][]byte, 10) preparer := func(length int) [][]byte { if length > len(buffer) { return nil } return buffer[:length] } fmt.Println(bytes.Split([]byte("1 2 3 4 5"), []byte(" "))) fmt.Println(bytes.Split([]byte("1 2 3 4 5"), []byte(" "), preparer)) }
Output: [[49] [50] [51] [52] [53]] [[49] [50] [51] [52] [53]]
Types ¶
Click to show internal directories.
Click to hide internal directories.