Raw method

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

Allocates a fresh (unslotted) block of count elements and returns it.

The caller is responsible for freeing this pointer.

Implementation

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