Raw method

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

Allocates an unslotted block of count structs.

The caller is responsible for freeing the returned pointer.

Implementation

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