DynamicArray.length

Get length.

  1. Capacity length [@property getter]
    struct DynamicArray(T, Allocator = GCAllocator, Capacity = size_t)
    pragma(inline, true) @property const scope
    Capacity
    length
    ()
    if (
    !is(immutable T == immutable bool) &&
    (
    is(Capacity == ulong) ||
    is(Capacity == uint)
    )
    &&
    isAllocator!Allocator
    )
  2. Capacity length [@property setter]
  3. enum _growthP;
  4. enum _growthQ;

Meta