Raw method

Pointer<Pointer<T>> Raw([
  1. int count = 1
])

Allocates an unslotted Pointer<Pointer<T>> of count elements.

The caller is responsible for freeing the returned pointer.

Implementation

Pointer<Pointer<T>> Raw([int count = 1]) => allocatorFunc(count);