DynamicArray.length

Get length.

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

Meta