2016-06-18 19:16 GMT+02:00 Oliver Schmid <oliver.sc...@gmail.com>:
> Hi. I made a string only version of the powerset function on Rosetta Code
> and ran into a bug where a slice input to append() [one, two, three, four]
> seems to be replaced by [one, two, three, five]. What.

Note that append() doesn't necessarily return a copy of the slice - if
there is capacity in the underlying array it is modified in place and
the length of the slice is incremented. You'll often get a slice with
extra capacity from append(). Ponder the following:

https://play.golang.org/p/1aKGTmw68t

//jb

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to