Logo

Programming-Idioms

  • Ada
  • JS
  • Fortran
  • Rust

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

let y = x.clone();

The elements type must implement the trait std::clone::Clone
let y = x.slice();
type (foo), allocatable, dimension(:) :: y
y = x

Assuming x is of type(foo).
List<T> y = x.ToList();

Using LINQ

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