Edson Manners wrote:
: I'm currently copying two 1-dimensional arrays using
: for loops. Is there an easier way as this may tag my
: cpu due to the huge numbers I am using.

@copyOfArray = @array;

is the usual way to copy arrays. Question., though: Is it absolutely
necessary to copy the arrays for what you're doing? If they're large,
this might be worth thinking about.

-- tdk

Reply via email to