DynamicArray.ptr

struct DynamicArray(T, Allocator = Mallocator, bool supportGC = shouldAddGCRange!T)
@nogc @property
ptr
(
this This
)
()

Return Value

Type: auto

a slice to the underlying array.

As the memory of the array may be freed, access to this array is highly unsafe.

Meta