VectorImpl.this

Constructs a new vector with reserved amount of elements worth of memory reserved.

  1. this(T[] rhs)
  2. this(inout(SelfType) rhs)
  3. this(size_t reserved)
    struct VectorImpl(T, bool ownsMemory = true)
    @nogc
    this
    (
    size_t reserved
    )

Parameters

reserved size_t

How many elements of memory to reserve.

Meta