DynamicArray.length

Get length.

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

Meta