Logo

Programming-Idioms

  • Perl
  • C#

Idiom #227 Copy a list

Create the new list y containing the same elements as the list x.

Subsequent modifications of y must not affect x (except for the contents referenced by the elements themselves if they contain pointers).

List<Int32> y = new List<Int32>(x);

Without LINQ
List<T> y = x.ToList();

Using LINQ
use Storable qw(dclone);
my @y = @x; # for simple arrays

# for complex arrays with references:
my @y = @{dclone(\@x)};
y = [...x];

New implementation...
< >
programming-idioms.org