Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


UnsafePtrList

Initializes and returns an instance of UnsafePtrList.
Read time 1 minuteLast updated 13 days ago

Definition

UnsafePtrList(`0**, int)

Initializes and returns an instance of UnsafePtrList.
public UnsafePtrList(T** ptr, int length)

Parameters

An existing pointer array to set as the internal buffer.

length

The length.

UnsafePtrList(int, AllocatorHandle, NativeArrayOptions)

Initializes and returns an instance of UnsafePtrList.
public UnsafePtrList(int initialCapacity, AllocatorManager.AllocatorHandle allocator, NativeArrayOptions options = NativeArrayOptions.UninitializedMemory)

Parameters

initialCapacity

The initial capacity of the list.

The allocator to use.

Whether newly allocated bytes should be zeroed out.