Logo

Programming-Idioms

  • C#
  • Rust
  • Perl
  • D

Idiom #134 Create a new list

Declare and initialize a new list items, containing 3 elements a, b, c.

auto items = [a, b, c];

Assuming that a, b and c have the same type, the list type is infered.
T[] items = new T[] { a, b, c };

items is an array with elements of type T
using System.Collections.Generic;
var items = new List<T>{a,b,c};

T is the type of the elements
let items = vec![a, b, c];
my @items = ($a, $b, $c);
(def items (list a b c))

New implementation...