allocate<T extends NativeType> function

Pointer<T> allocate<T extends NativeType>(
  1. int byteCount
)

Implementation

Pointer<T> allocate<T extends NativeType>(int byteCount) {
  return malloc.allocate(byteCount);
}