Construct List from elements, specifying element type.
const auto v = list!double(1, 2, 3); assert(is(Unqual!(typeof(v)) == List!(double, 3))); assert(v == [1.0, 2.0, 3.0]);
See Implementation
Construct List from elements, specifying element type.