DynamicArray.ptr

struct DynamicArray(T, bool supportGC = true)
@property @nogc
T*
ptr
()

Return Value

Type: T*

a slice to the underlying array.

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

Meta