FixedDynamicArray.makeUninitializedOfLength

Make and return uninitialized array of length.

Unlike @trusted pureMalloc this must be @system because the return value of this factory function can be accessed in @safe code.

struct FixedDynamicArray(T, Allocator = Mallocator)
@safe pragma(inline, true) static @system
typeof(this)
makeUninitializedOfLength
(
size_t length
)
if (
isAllocator!Allocator
)

Meta