ArrayStore.this

Undocumented in source.
  1. this(T[] slice, Capacity length)
  2. this(T* ptr, Capacity capacityAndLength)
  3. this(T* ptr, Capacity capacity, Capacity length)
    struct ArrayStore(T, Allocator = GCAllocator, Capacity = size_t)
    pragma(inline, true) @trusted pure nothrow @nogc
    this
    (
    T* ptr
    ,
    in Capacity capacity
    ,
    in Capacity length
    )
    if (
    !is(immutable T == immutable bool) &&
    (
    is(Capacity == ulong) ||
    is(Capacity == uint)
    )
    &&
    isAllocator!Allocator
    )

Meta