ScopeBuffer.length

  1. size_t length [@property getter]
    struct ScopeBuffer(T, alias realloc = .realloc)
    @property
    size_t
    length
    const
    (
    )
    if (
    isAssignable!T &&
    !hasElaborateDestructor!T
    &&
    !hasElaborateCopyConstructor!T
    &&
    !hasElaborateAssign!T
    )
  2. size_t length [@property setter]

Return Value

Type: size_t

the number of elements in the ScopeBuffer

Meta