Tagged Questions
1
vote
1answer
103 views
What does it mean for .slice() to be a “shallow clone”?
ActionScript's Array and Vector classes both have a slice() method. If you don't pass any parameters, the new Array or Vector is a duplicate (shallow clone) of the original Vector.
What does it mean ...