Byte Slices
Let’s learn about byte slices in Go.
We'll cover the following...
What are byte slices?
A byte slice is a slice of the byte
data type ([]byte
). Go knows that most byte
slices are used to store strings and so it makes it easy to switch between this type and the string
type. There is nothing special in the way we can access a byte slice compared to the other types of slices. What is special is that Go uses byte slices for performing file I/O operations because they allow us to determine with ...