RawArray method

P RawArray(
  1. List<X> array
)

Allocates an unslotted array.

The caller is responsible for freeing the returned pointer.

Implementation

P RawArray(List<X> array) => Raw(array.length);