Version: Unity 6.7 Beta (6000.7)
LanguageEnglish
  • C#

NativeList<T0>.AddRange

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public void AddRange(NativeArray<T> array);

Parameters

Parameter Description
array The array to copy from.

Description

Appends the elements of an array to the end of this list.


Declaration

public void AddRange(NativeList<T> list);

Parameters

Parameter Description
list The NativeList to copy from.

Description

Appends the elements of a NativeList to the end of this list.


Declaration

public void AddRange(void* ptr, int count);

Parameters

Parameter Description
ptr The buffer to copy from.
count The number of elements to copy from the buffer.

Description

Appends the elements of a buffer to the end of this list.


Declaration

public void AddRange(ReadOnlySpan<T> roSpan);

Parameters

Parameter Description
roSpan ReadOnlySpan to copy from.

Description

Copies elements from a ReadOnlySpan to the end of this list.