I am new to Go, and would like to copy an array (slice) into part of another. For example, I have a largeArray [1000]byte or something and a smallArray [10]byte and I want the first 10 bytes of largeArray to be equal to the contents of smallArray. I have tried:

largeArray[0:10] = smallArray[:]

But that doesn't seem to work. Is there a built-in memcpy-like function, or will I just have to write one myself?

Thanks!

link|improve this question

1  
Before you ask a question like this, try googling "Go language copy". Please don't ask questions here when the answer is so easily accessible. – Anschel Schaffer-Cohen Sep 3 '11 at 23:55
feedback

1 Answer

up vote 7 down vote accepted

Use the copy built-in function.

package main

func main() {
    largeArray := make([]byte, 1000)
    smallArray := make([]byte, 10)
    copy(largeArray[0:10], smallArray[:])
}
link|improve this answer
1  
Nitpicky remark: the [:] bit in the copy() call is not necessary. – jimt Aug 31 '11 at 14:15
Thanks! Go's docs seem a little scattered to me, I wish that weren't so... – fyhuang Sep 2 '11 at 19:09
Does it have to be a copy? Slices can be a kind of overlay of arrays or other slices. So smallSlice := largeArray[0:10] would be enough. – Mue Sep 4 '11 at 18:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.