DynamicArray.length

Get length.

  1. size_t length [@property getter]
    struct DynamicArray(T, alias Allocator = null, CapacityType = size_t)
    @safe pragma(inline) @property const scope
    size_t
    length
    ()
    if (
    !is(Unqual!T == bool) &&
    (
    is(CapacityType == ulong) ||
    is(CapacityType == uint)
    )
    )
  2. size_t length [@property setter]

Meta