Logo

Programming-Idioms

  • Go
  • Java

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

import java.util.ArrayList;
List<T> y = new ArrayList<>(x);
import "slices"
y := slices.Clone(x)

This generic Clone func accepts x of any slice type
y := make([]T, len(x))
copy(y, x)

Elements have type T
Note that the destination is the first argument of copy.
List<T> y = x.ToList();

Using LINQ

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