vector

Create a vector from a variadic list of elements, inferring the type of the elements and the allocator

  1. auto vector(E[] elements)
  2. auto vector(A allocator, E[] elements)
    vector
    (
    A = typeof(theAllocator)
    E
    )
  3. auto vector(R range)
  4. auto vector(A allocator, R range)

Meta