List.this

Construct List with backing pointer and capacity and optional initial elements.

  1. this(Args args)
  2. this(T[] backingSlice, Args args)
  3. this(T* backingArrayPointer, size_t capacity, Args args)
    struct List(T, long N = -1)
    static if(!(isSized))
    this
    (
    Args...
    )
    (,
    size_t capacity
    ,
    auto ref Args args
    )
  4. this(void[] backingSlice, Args args)
  5. this(void* backingArrayPointer, size_t bufferSize, Args args)

Meta