Logo

Programming-Idioms

  • PHP
  • C#
  • Dart

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).

y = [...x];
List<T> y = x.ToList();

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

Without LINQ
type (foo), allocatable, dimension(:) :: y
y = x

Assuming x is of type(foo).

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