OwnedArray

Memory management tips

1) use StackArrays whenever you can 2) HeapArrays are the second choice, they are refcounted automatically 3) OwnedArrays are like heap arrays, but non-copyable

struct OwnedArray (
T
) {}

Destructor

A destructor is present on this object, but not explicitly documented in the source.

Postblit

A postblit is present on this object, but not explicitly documented in the source.

Suggestion Box / Bug Report